* {
    margin: 0;
    padding: 0;
}

p, h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

.w1200 {
    margin: 0 auto;
    width: 1200px;
}

.m60 {
    margin: 60px auto;
}

.main {
    padding: 60px 0;
}

/*文字*/
.p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.con h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.con p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*图片*/
.img1, .img2 {
    display: block;
    overflow: hidden;
    position: relative;
}

.img1 img, .img2 img {
    position: absolute;
    min-width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    transition: ease-in-out .3s;
}

div:hover > .img2 img, div:hover > a > .img2 img, li:hover > a > .img2 img, li:hover > .img2 img {
    transform: translateX(-50%) scale(1.1);
}

header {
    padding: 26px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: ease-in-out .3s;
}

header.active {
    background: rgba(0, 0, 0, .6);
    padding: 20px 0;
}

header .logo img {
    display: block;
    width: 195px;
    height: 48px;
}

header .nav_btn {
    display: none;
}

header .nav_list {
}

header .nav_list li {
    float: left;
    margin-left: 6px;
    position: relative;
}

header .nav_list li > a {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 48px;
    padding: 0 20px;
    border-bottom: 2px solid transparent;
    position: relative;
    z-index: 99;
}

header .nav_list li > a:hover, header .nav_list li.act > a {
    border-bottom: 2px solid #275f98;
}

header .nav_list li::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%; /*top: -26px;*/
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: ease-in-out .3s;
    z-index: 90;
}

header .nav_list li:hover::before {
    height: 76px;
}

header.active .nav_list li:hover::before {
    height: 70px;
}

header .nav_list li .nav_list2 {
    position: absolute;
    padding: 0 6px;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    min-width: 100%;
    text-align: center;
    box-sizing: border-box;
}

header .nav_list li .nav_list2 a {
    display: block;
    padding: 18px 6px;
    border-bottom: 1px solid rgba(164, 164, 164, 0.2);
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    transition: ease-in-out .3s;
    box-sizing: border-box;
}

header .nav_list li .nav_list2 a:last-child {
    border-bottom: 1px solid transparent;
}

header .nav_list li .nav_list2 a:hover {
    color: #275f98;
}

.banner_swiper {
    width: 100%;
    height: auto;
    /*height: 100vh;*/
}

.banner_swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner_swiper .swiper-slide .banner_img1 {
    display: block;
    width: 100%;
    height: 100%;
}

.banner_swiper .swiper-slide .banner_img2 {
    display: none;
}

.banner_pc {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner_pc .img1 {
    display: block;
    width: 100%;
    height: 100%;
}

.banner_pc .img2 {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@keyframes fadeBig {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@keyframes fadeBig2 {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.fadeBig2 {
    -webkit-animation-name: fadeBig2;
    animation-name: fadeBig2;
}

.banner_swiper .swiper-slide.swiper-slide-active .banner_pc .img1 {
    -webkit-animation: fadeBig 5s both 2s;
    animation: fadeBig 5s both 2s;
}

.banner_swiper .swiper-slide .banner_pc .img2 {
    -webkit-animation: fadeOutLeft 1s both;
    animation: fadeOutLeft 1s both;
}

.banner_swiper .swiper-slide.swiper-slide-active .banner_pc .img2 {
    -webkit-animation: fadeInUp 1.5s both .6s;
    animation: fadeInUp 1.5s both .6s;
}
.banner_phone{
    display: none;
}
.banner_page {
    bottom: 20px !important;
}

.banner_page .page_li {
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    margin: 0 15px;
    display: inline-block;
}

.banner_page .page_active {
    background: #fff;
}

.index_title {
    margin-bottom: 50px;
}

.index_title h2 {
    font-size: 30px;
    color: #275f98;
    display: inline-block;
}

.index_title p {
    font-size: 16px;
    color: #DDD9E7;
    margin-left: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.index_title p::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #C7C7C7;
    vertical-align: middle;
    margin-left: 20px;
}

.index_main1_con {
}

.index_main1_con .left {
    width: 540px;
}

.index_main1_con .left p {
    width: 100%;
    font-size: 16px;
    color: #333333;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.index_main1_con .left .more_btn {
    display: block;
    width: 146px;
    height: 36px;
    border: 1px solid #275f98;
    margin-top: 60px;
    text-align: center;
    line-height: 34px;
    box-sizing: border-box;
    font-size: 14px;
    color: #275f98;
    transition: ease-in-out .1s;
}

.index_main1_con .left .more_btn:hover {
    background: #275f98;
    color: #fff;
}

.index_main1_con .right {
    display: block;
    width: 575px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.index_main1_con .right img {
    display: block;
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index_main2_con { /*height: 600px;*/
    position: relative;
}

.index_main2_con .index_main2_bg {
    width: 100%;
    height: auto;
    display: block;
}

.index_main2_con2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 9;
    height: 100%;
}

.index_main2_con2::after {
    content: "";
    display: block;
    height: 100%;
    width: 5px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -2.5px;
    background: #E4E1E1;
}

.index_main2_con2 .w1200 {
    height: 100%;
    box-sizing: border-box;
    border-left: 5px solid #E4E1E1;
    border-right: 5px solid #E4E1E1;
}

.index_main2_con2 .w1200 div {
    display: block;
    float: left;
    width: 50%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    transition: ease-in-out .2s;
}

.index_main2_con2 .w1200 div:hover {
    background: rgba(0, 0, 0, .3);
}

.index_main2_con2 .w1200 div img {
    display: block;
    width: 121px;
    height: 121px;
    margin: 35% auto 0;
}

.index_main2_con2 .w1200 div h2 {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 76px 0 38px;
}

.index_main2_con2 .w1200 div p {
    font-size: 0;
}

.index_main2_con2 .w1200 div p a {
    display: inline-block;
    height: 26px;
    background: #5F5F5F;
    border-radius: 12px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 26px;
    padding: 0 12px;
    margin: 0 12px 10px;
    transition: ease-in-out .2s;
}

.index_main2_con2 .w1200 div p a:hover {
    background: #275f98;
}

.index_main3_con .hd {
}

.index_main3_con .hd ul {
    display: flex;
}

.index_main3_con .hd ul li {
    float: left; /*width: 25%;*/
    flex: 1;
    position: relative;
    height: 76px;
}

.index_main3_con .hd ul li.on {
    background: #969595;
}

.index_main3_con .hd ul li::before {
    content: "";
    display: block;
    position: absolute;
    height: 50px;
    width: 1px;
    right: 0;
    top: 13px;
    background: #969595;
}

.index_main3_con .hd ul li:last-child::before {
    display: none;
}

.index_main3_con .hd ul li p {
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    color: #333333;
    cursor: pointer;
    position: absolute;
    box-sizing: border-box;
    padding: 0 10px;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translate(0, -50%);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.index_main3_con .hd ul li.on p {
    color: #fff;
    font-weight: bold;
}

.index_main3_con .bd {
    /*background: url("../images/index_bg2.jpg") top center; !*height: 600px;*!*/
    background: #969595; /*height: 600px;*/
    box-sizing: border-box;
    padding: 50px 0;
}

.index_main3_con .bd > div {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 495px;
}

.index_main3_con .bd > div img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.index_main3_con .bd > div div {
    display: block;
    width: 445px;
    height: 495px;
    background: rgba(0, 0, 0, .68);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    box-sizing: border-box;
    padding: 75px 40px;
}

.index_main3_con .bd > div div ul {
}

.index_main3_con .bd > div div ul li {
    margin-bottom: 70px;
}

.index_main3_con .bd > div div ul li:last-child {
    margin-bottom: 0;
}

.index_main3_con .bd > div div ul li h2 {
    width: 70px;
    height: 70px;
    border: 1px solid #E4E1E1;
    border-radius: 50%;
    line-height: 68px;
    box-sizing: border-box;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #FFFFFF;
    display: inline-block;
    vertical-align: top;
}

.index_main3_con .bd > div div ul li p {
    width: 265px;
    height: 66px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    margin-left: 25px;
    display: inline-block;
    vertical-align: top;
    float: right;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.index_mian4 {
    margin-bottom: 40px;
}

.index_main4_con {
    margin-top: 40px;
    padding: 20px;
    margin-left: -20px;
}

.index_main4_con .swiper-slide {
    box-shadow: 1px 2px 12px 0 rgba(168, 167, 167, 0.71);
}

.index_main4_con .swiper-slide .img2 {
    width: 100%;
    height: 210px;
}

.index_main4_con .swiper-slide .con {
    box-sizing: border-box;
    padding: 15px;
}

.index_main4_con .swiper-slide .con h2 {
    font-size: 16px;
    color: #333333;
    -webkit-line-clamp: 2;
    transition: ease-in-out .3s;
    height: 52px;
    line-height: 26px;
    margin-bottom: 30px;
}

.index_main4_con .swiper-slide .con h4 {
    transition: ease-in-out .3s;
    font-size: 16px;
    color: #275f98;
    line-height: 26px;
}

.index_mian4 .more_btn {
    display: block;
    width: 146px;
    height: 36px;
    border: 1px solid #275f98;
    text-align: center;
    line-height: 34px;
    box-sizing: border-box;
    font-size: 14px;
    color: #275f98;
    transition: ease-in-out .1s;
    margin: 60px auto;
}

.index_mian4 .more_btn:hover {
    background: #275f98;
    color: #fff;
}

footer {
    background: url("../images/foot_bg.jpg") #f5f5f5 no-repeat top center;
    padding-top: 30px;
}

.foot_main1 {
    float: left;
    min-height: 230px;
    padding-bottom: 40px;
    box-sizing: border-box; /*width: 700px;*/
}

.foot_main1 ul {
    float: left;
    margin-right: 60px;
    max-width: 175px;
}

.foot_main1 ul li a {
    font-size: 14px;
    color: #CDCDCD;
    display: block;
    line-height: 24px;
}

.foot_main1 ul li:first-child a {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}

.foot_main1 ul li:first-child a::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #E4E1E1;
    opacity: 0.5;
    margin: 15px 0;
}

.foot_main3 {
    float: right;
}

.foot_main3 img {
    display: block;
    width: 110px;
    height: 110px;
}

.foot_main3 p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;
    margin-top: 20px;
}

.foot_main4 {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #181818;
}

.foot_main4 p {
    font-size: 14px;
    color: rgba(205, 205, 205, 0.9);
}

.foot_main4 p a { /*float: right;*/
    color: rgba(205, 205, 205, 0.9);
    margin-right: 10px;
}

.foot_main6{
padding: 0 0 12px 0;
}
.foot_main6 p {
    font-size: 14px;
    color: rgba(205, 205, 205, 0.9);
    line-height: 1.8;
}
.foot_main6 p a{
    font-size: 14px;
    color: rgba(205, 205, 205, 0.8);
   marign: 0 10px;
display:inline-block;
}
.foot_main6 p a:hover{
color: rgba(205, 205, 205, 0.96);
}
/*关于盒子_公司简介*/
.top_main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top_main img {
    display: block;
    width: 100%;
}

.top_main h2 {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    margin-left: -600px; /*margin-top: 50px;*/
    color: #FFFFFF;
    line-height: 50px;
    text-transform: uppercase;
    transform: translateY(-50%);
    font-size: 32px;
}

.top_main h2 span {
    margin: 0 20px;
    text-transform: uppercase;
}

.top_nav {
    width: 100%;
    height: 70px;
    background: #969595;
    margin-top: -70px;
    position: relative;
    z-index: 9;
}

.top_nav ul {
    font-size: 0;
    text-align: center;
}

.top_nav ul li {
    display: inline-block;
}

.top_nav ul li a {
    display: block;
    width: 184px;
    height: 70px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 70px;
    transition: ease-in-out .2s;
    overflow: hidden;
    position: relative;
}

.top_nav ul li a::before {
    content: "";
    display: block;
    background: url("../images/nav_icon.png");
    width: 8px;
    height: 26px;
    position: absolute;
    bottom: -100%;
    left: 50%;
    margin-left: -4px;
    transition: ease-in-out .3s;
}

.top_nav ul li.act a, .top_nav ul li a:hover {
    background: #3C3C3C;
}

.top_nav ul li.act a::before, .top_nav ul li a:hover::before {
    bottom: -5%;
}

.title {
    font-size: 26px;
    color: #333333;
    text-align: center;
    line-height: 30px;
    margin-bottom: 40px;
}

.title::after {
    display: block;
    content: "";
    width: 33px;
    height: 3px;
    background: #275f98;
    margin: 15px auto 0;
}

.article {
    font-size: 16px;
    color: #333333;
    line-height: 30px;
}

.article img {
    max-width: 100%;
}

/*关于盒子_发展历史*/
.about_main2 {
    position: relative;
}

.about_main2 .left {
    width: 220px;
    text-align: center;
    padding-bottom: 140px;
}

.about_main2 .left.act {
    position: fixed;
    top: 100px;
}

.about_main2 .left ul li a {
    font-size: 18px;
    color: #333;
    line-height: 54px;
    transition: ease-in-out .2s;
}

.about_main2 .left ul li.act a, .about_main2 .left ul li a:hover {
    font-size: 20px;
    font-weight: bold;
    color: #275f98;
}

.about_main2 .right {
    width: 980px;
}

.about_main2 .right ul li {
    position: relative;
    padding-left: 65px;
    padding-bottom: 42px;
}

.about_main2 .right ul li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: #275f98;
    border-radius: 50%;
}

.about_main2 .right ul li::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 7px;
    width: 1px;
    height: 100%;
    background: #275f98;
}

.about_main2 .right ul li:last-child::after {
    height: 0;
}

.about_main2 .right ul li .img1 {
    width: 190px;
    height: 120px;
    display: inline-block;
}

.about_main2 .right ul li .con2 {
    width: 670px;
    display: inline-block;
    vertical-align: top;
    margin-left: 40px;
}

.about_main2 .right ul li .con2 h2 {
    font-size: 16px;
    color: #275f98;
    line-height: 30px;
}

.about_main2 .right ul li .con2 p {
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    margin-top: 5px;
}

/*关于盒子_品牌理念*/
.title2 {
    text-align: center;
    font-size: 26px;
    color: #333333;
    line-height: 32px;
    margin-bottom: 50px;
}

.title2 img {
    margin: -8px 0 0;
    vertical-align: middle;
}

.about_main3 {
}

.about_main3 ul {
    width: 100%;
    height: 590px;
    white-space: nowrap;
    overflow: hidden;
}

.about_main3 ul li {
    width: 200px;
    margin-right: 6px;
    float: left;
    height: 590px;
    overflow: hidden;
    transition: ease-in-out .5s;
    position: relative;
}

.about_main3 ul li:last-child {
    margin-right: 0;
}

.about_main3 ul li.act {
    width: 582px;
}

.about_main3 ul li img {
    height: 100%;
    width: auto;
}

.about_main3 ul li .con {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 18px 0;
    transition: ease-in-out .5s;
}

.about_main3 ul li.act .con {
    padding: 18px 40px;
}

.about_main3 ul li .con h2 {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    width: 100%;
    transition: ease-in-out .5s;
    display: block;
}

.about_main3 ul li.act .con h2 {
    text-align: left;
}

.about_main3 ul li .con p {
    height: 0;
    width: 100%;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 32px;
    display: block;
}

.about_main3 ul li.act .con p {
    height: auto;
}

/*关于盒子_公司荣誉*/
.about_main4_top {
    font-size: 0;
    text-align: center;
    border-bottom: 1px solid #BFBFBF;
}

.about_main4_top li {
    display: inline-block;
    padding: 0 20px;
}

.about_main4_top li a {
    font-size: 18px;
    color: #333333;
    line-height: 36px;
    padding: 0 5px;
    display: block;
    transition: ease-in-out .3s;
}

.about_main4_top li.act a, .about_main4_top li a:hover {
    color: #275f98;
    font-size: 22px;
    border-bottom: 2px solid #275f98;
}

.about_main4_list {
    margin-top: 60px;
}

.about_main4_list li {
    float: left;
    margin-right: 60px;
    width: 360px;
}

.about_main4_list li:nth-child(3n) {
    margin-right: 0;
}

.about_main4_list li div.img {
    width: 100%;
    height: 360px;
    border: 1px solid #BFBFBF;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.about_main4_list li div.img img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
}

.about_main4_list li p {
    text-align: center;
    font-size: 16px;
    color: #000000;
    line-height: 32px;
    margin-top: 15px;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.pagination {
    text-align: center;
    font-size: 0;
}

.pagination li {
    display: inline-block;
    font-size: 18px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    line-height: 40px;
    min-width: 40px;
    margin: 0 10px;
    padding: 0 14px;
    box-sizing: border-box;
    cursor: pointer;
}

.pagination li span, .pagination li a {
    color: #999999;
}

.pagination li.active span, .pagination li:hover span, .pagination li:hover a {
    color: #fff;
}

.pagination li.active, .pagination li:hover {
    border: 1px solid #275f98;
    background: #275f98;
}

/*智行产品*/
.top_main2 {
    position: relative;
    overflow: hidden;
}

.top_main2 .top_bg {
    width: 100%;
    height: auto;
    display: block;
}

.top_main2 .top_con {
    width: 50%;
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 90px;
    /*background: rgba(26, 12, 48, 0.7);*/
    background: rgb(41, 97, 153, 0.7);
    box-shadow: 0px 5px 11px 0px rgba(11, 2, 18, 0.66); /*opacity: 0.7;*/
}

.top_main2 .top_con2 {
    width: 410px;
    height: auto;
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -45px;
}

.top_main2 .top_con2 img {
    display: block;
    margin: 0 auto;
    width: 121px;
    height: 121px;
}

.top_main2 .top_con2 h2 {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    margin: 40px 0;
}

.top_main2 .top_con2 p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
}

.brand_top {
    margin-bottom: 60px;
}

.brand_top div {
    border-bottom: 1px dashed #D7D3D3;
    padding: 8px 0 0;
}

.brand_top div p {
    display: inline-block;
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #275f98;
    line-height: 25px;
    border-left: 4px solid #275f98;
    white-space: nowrap;
    padding: 0 22px;
}

.brand_top div ul {
    display: inline-block;
    float: right;
    width: 1080px;
    font-size: 0;
}

.brand_top div ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 8px;
}

.brand_top div ul li a {
    font-size: 12px;
    color: #333333;
    line-height: 25px;
    display: block;
    padding: 0 8px;
}

.brand_top div ul li.act a, .brand_top div ul li a:hover {
    background: #275f98;
    color: #fff;
}

.brand_list {
}

.brand_list li {
    width: 370px;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    border-bottom: 2px solid #275f98;
    box-sizing: border-box;
    padding: 12px;
    margin-right: 45px;
    margin-bottom: 40px;
    float: left;
}

.brand_list li:nth-child(3n) {
    margin-right: 0;
}

.brand_list li .img2 {
    width: 100%;
    height: 243px;
}

.brand_list li .con h2 {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 24px;
    margin-top: 10px;
}

.brand_list li .con p {
    font-size: 14px;
    color: #8D8D8D;
    line-height: 24px;
    margin-top: 30px;
}

/*盒品牌_详情页*/
.add {
    font-size: 14px;
    color: #333333;
    line-height: 26px;
}

.add a {
    color: #333333;
}

.brand_main1 {
    margin-top: 30px;
}

.brand_main1 .left {
    width: 484px;
    height: auto;
    display: block;
}

.brand_main1 .left img {
    display: block;
    width: 100%;
    height: auto;
}

.brand_main1 .right {
    width: 660px;
}

.brand_main1 .right h2 {
    font-size: 22px;
    color: #275f98;
    line-height: 26px;
    margin-top: 22px;
}

.brand_main1 .right p {
    font-size: 16px;
    color: #999999;
    line-height: 26px;
    margin-top: 40px;
}

.brand_main2 {
    margin-top: 60px;
}

.brand_main2 .hd {
    border-bottom: 1px solid #275f98;
    margin-bottom: 50px;
}

.brand_main2 .hd ul {
    font-size: 0;
}

.brand_main2 .hd ul li {
    width: 152px;
    height: 38px;
    background: #275f98;
    text-align: center;
    line-height: 38px;
    display: inline-block;
    font-size: 16px;
    color: #FFFFFF;
    margin-right: 6px;
    cursor: pointer;
}

.brand_main2 .hd ul li.on {
    /*background: #1A0C30;*/
    background: #163656;;
}

/*盒创新_盒聚变*/
.chuangxin_main1 {
}

.chuangxin_main1 li {
    width: 340px;
    margin-right: 90px;
    float: left;
}

.chuangxin_main1 li:nth-child(3n) {
    margin-right: 0;
}

.chuangxin_main1 li .img1 {
    width: 340px;
    height: 340px;
}

.chuangxin_main1 li .con2 {
    margin-top: 90px;
}

.chuangxin_main1 li .con2 h2 {
    width: 90px;
    height: 90px;
    border: 1px solid #275f98;
    border-radius: 50%;
    font-size: 32px;
    color: #275f98;
    line-height: 88px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}

.chuangxin_main1 li .con2 p {
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    margin-top: 40px;
}

/*盒创新_盒辐射*/
.chuangxin_main3 {
    margin-top: 50px;
}

/*盒新闻*/
.news_list { /*margin: 40px 0;*/
    margin-bottom: 50px;
}

.news_list li {
    padding: 18px;
    box-sizing: border-box;
    border-bottom: 1px solid #D9D7D7;
    transition: ease-in-out .3s;
}

.news_list li:hover {
    box-shadow: 0 0 18px 3px rgba(0, 0, 0, 0.13);
}

.news_list li .img2 {
    float: left;
    width: 245px;
    height: 160px;
}

.news_list li .date {
    float: left;
    margin-top: 50px;
    margin-left: 56px;
}

.news_list li .date h3 {
    font-size: 31px;
    font-weight: 300;
    color: #454545;
    line-height: 32px;
}

.news_list li .date h2 {
    font-size: 16px;
    font-weight: 300;
    color: #999999;
    line-height: 32px;
}

.news_list li .con {
    width: 600px;
    margin-left: 56px;
    float: left;
}

.news_list li .con h2 {
    font-size: 18px;
    color: #275f98;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 30px;
}

.news_list li .con p {
    font-size: 14px;
    color: #888787;
    line-height: 24px;
    height: 48px;
    margin-top: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news_list li .jiao {
    float: right;
    width: 18px;
    height: 18px;
    display: block;
    background: #275f98;
    border-radius: 50%;
    text-align: center;
    margin-top: 72px;
    margin-right: 22px;
    transition: ease-in-out .3s;
}

.news_list li .jiao img {
    display: block;
    width: 100%;
    height: 100%;
}

/*详情页*/
.article_main {
    border: 1px solid #D2D2D2;
    margin: 60px auto;
    box-sizing: border-box;
    padding: 60px;
}

.article_main h1 {
    display: block;
    font-size: 30px;
    color: #333333;
    text-align: center;
}

.article_top {
    text-align: center;
    margin: 30px 0;
}

.article_top p {
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    color: #888888;
    margin: 0 10px;
}

.article_top p img {
    vertical-align: top;
    margin: 2px 6px 0;
}

.article_con {
    font-size: 16px;
    color: #333333;
    line-height: 32px;
}

.article_con img {
    max-width: 100%;
}

.fx_main {
    margin-top: 48px;
}

.fx_main .left {
    width: 50%;
}

.fx_main .left p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fx_main .left p, .fx_main .left p a {
    font-size: 14px;
    line-height: 26px;
    color: #333333;
}

.fx_main .left p a:hover {
    color: #ffc000;
}

.fx_main .right {
    margin-top: 10px;
}

.fx_main .right a {
    background-image: url("../images/fx.png") !important; /*width: 30px;*/
    height: 30px !important;
    line-height: 30px;
    padding-left: 30px !important; /*margin: 0 4px;*/
}

.fx_main .right a.bshare-qqim {
    background-position: 0 0;
}

.fx_main .right a.bshare-qzone {
    background-position: -32px 0;
}

.fx_main .right a.bshare-sinaminiblog {
    background-position: -64px 0;
}

.fx_main .right a.bshare-weixin {
    background-position: -96px 0;
}

.bshare-custom.icon-medium-plus a.bshare-more.more-style-addthis {
    background: url("../images/fx.png") -129px 0 !important; /*background-position: -129px 0;*/
    padding-left: 30px !important;
}

.fx_main .right a.bshare-more {
    background-position: -129px 0;
}

.fx_main .right p {
    color: #999999;
    font-size: 14px;
    line-height: 30px;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

/*加入盒子*/
.join_list {
    margin-top: 40px;
}

.join_list li {
    margin-bottom: 20px;
}

.join_list li .join_list_top {
    line-height: 44px;
    height: 44px;
    background: #F5F5F5;
    cursor: pointer;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 0;
}

.join_list li.active .join_list_top {
    background: #275f98;
}

.join_list li .join_list_top p {
    font-size: 14px;
    display: inline-block;
    color: #333333;
}

.join_list li .join_list_top p:nth-child(1) {
    width: 920px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
    box-sizing: border-box;
    padding-right: 15px;
}

.join_list li .join_list_top p:nth-child(2), .join_list li .join_list_top p:nth-child(3) {
    width: 86px;
}

.join_list li .join_list_top p:nth-child(4) {
    float: right;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin-top: 12px;
    vertical-align: top;
    background: url("../images/join_icon1.png") #cecece;
    margin-right: 15px;
}

.join_list li.active .join_list_top p {
    color: #fff;
}

.join_list li.active .join_list_top p:nth-child(4) {
    background: url("../images/join_icon2.png") #1a0c30;
}

.join_list li .join_list_con {
    display: none;
    width: 100%;
    padding: 25px 20px 0;
    font-size: 16px;
    color: #444444;
    line-height: 32px;
    box-sizing: border-box;
}

.join_list li .join_list_con p {
    font-size: 16px;
    color: #444444;
    line-height: 30px;
}

.join_p {
    margin-top: 30px;
    color: #444444;
    font-size: 16px;
    line-height: 30px;
}

.join_p a {
    color: #950002;
}

/*联系盒子*/
.contact_main {
    padding: 50px 0;
}

.contact_main li {
    width: 25%;
    float: left;
    text-align: center;
    box-sizing: border-box;
    padding: 0 40px;
}

.contact_main li img {
    width: 78px;
    height: 78px;
    display: block;
    margin: 0 auto 35px;
}

.contact_main li p {
    font-size: 14px;
    color: #333333;
    line-height: 24px;
}

.contact_main li.weixin {
    position: relative;
}

.contact_main li.weixin .weixin_img {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: ease-in-out .3s;
}

.contact_main li.weixin:hover .weixin_img {
    opacity: 1;
}

.contact_main li.weixin .weixin_img img {
    width: 110px;
    height: 110px;
}

.address {
    width: 100%;
    margin-top: 60px;
    height: 440px;
}