body {
    background-color: #f9f9f9;
}

/*banner*/
.product-banner {
    height: 280px;
    min-width: 1200px;
    display: none;
}

.product-banner h2 {
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    padding-top: 60px;
}

.product-banner h2 span {
    color: #f54a16;
}

/*参数盒子*/
.parameter-box {
    width: 856px;
    height: 88px;
    border-radius: 4px;
    margin: 20px auto 0;
    background-color: #ffffff;
    overflow: hidden;
}

.parameter-box .item {
    float: left;
    border-left: 1px solid #dce0e0;
    padding: 18px 0 18px 20px;
    width: 214px;
    height: 88px;
    box-sizing: border-box;
    font-size: 16px;
}

.parameter-box .item:first-child {
    border-left: none;
}

.parameter-box .item h4 {
    color: #333333;
    padding-left: 3px;
}

.parameter-box .parameter {
    color: #888888;
}

.parameter-box .parameter input {
    width: 60px;
    border: none;
    height: 30px;
    line-height: 30px;
    outline: none;
    text-align: center;
    font-size: 15px;
}

.parameter-box .parameter .number-box {
    border: none;
    width: 170px;
    height: 30px;
    color: rgb(168, 168, 168);
    font-size: 15px;
}

.parameter-box .parameter .active {
    color: rgb(72, 72, 72);
}

.parameter-box .quoteBtn {
    width: 130px;
    height: 50px;
    border: 0;
    background-color: #f54c18;
    color: #fff;
    float: right;
    margin: 16px 20px 0 0;
}

.parameter-box .quoteBtn:hover {
    background-color: #da4400;
}

/*产品主体*/
.product-main {

}

.product-main .product-nav {
    background-color: #ffffff;
    height: 84px;
    border-bottom: 1px solid #e5e5e5;
    min-width: 1280px;
}

.product-main .product-nav .nav-boxs {
    width: 1280px;
    margin: 0 auto;
}

.product-nav .nav-boxs .nav-list {
    float: left;
    font-size: 16px;
    margin-top: 38px;
}

.product-nav .nav-boxs .nav-list li {
    height: 45px;
    border-bottom: 2px solid transparent;
    float: left;
    margin-right: 50px;
    cursor: pointer;
    transition: all .3s ease-in;
    font-weight: bold;
}

.product-nav .nav-boxs .nav-list li a {
    color: #0e0509;
    display: inline-block;
    line-height: 0;
}

.product-nav .nav-boxs .nav-list li:hover {
    border-bottom: 2px solid #f54a16;
}

.product-nav .nav-boxs .nav-list .active {
    color: #f54a16;
    border-bottom: 2px solid #f54a16;
}

.product-nav .nav-boxs .nav-list .active a {
    color: #f54a16;
}

.product-nav .nav-boxs .instructions-text {
    float: right;
    color: #666666;
    margin-top: 38px;
}

.product-nav .nav-boxs .instructions-text li {
    float: left;
    position: relative;
    padding: 0 15px;
}

.product-nav .nav-boxs .instructions-text li:after {
    position: absolute;
    top: 3px;
    right: 0;
    display: block;
    content: '';
    border-left: 1px solid #b7b7b7;
    height: 14px;

}

.product-nav .nav-boxs .instructions-text li:last-child {
    margin-right: 0;
}

.product-nav .nav-boxs .instructions-text li:last-child:after {
    display: none;
}

.product-main .product-box {

}

.product-items {
    margin: 50px 0 0 -25px;
}

.product-items .item {
    float: left;
    margin: 0 40px 40px 40px;
    width: 250px;
    height: 320px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.product-items .item .product-img {
    height: 85%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.product-items .item .product-img a {
    display: block;
    height: 100%;
    transition: all .1s ease-in;
    background-size: cover;
}

.product-items .item .product-img:hover a {
    transform: scale(1.02);
}

.product-items .item .product-title {   
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.product-items .item .product-text {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;  
    text-indent: 30px;
}

.product-text div p {
    display: flex;
}

.product-items .item .product-text:hover {
    opacity: 0.7;
}

.product-items .item .name {
    font-weight: bold;
    margin: 15px 18px 0;
    font-size: 16px;
}

.product-items .item .title {
    margin: 10px 18px;
    height: 40px;
    overflow: hidden;
    color: #999;
}



.product-items .item .preview-box {
    border-top: 1px solid #efefef;
    height: 30px;
    padding: 0 12px;
}

.product-items .item .preview-box li {
    float: left;
    padding-top: 4px;
}

.product-items .item .preview-box li span {
    vertical-align: middle;
}

.product-items .item .preview-box .praise {
    width: 46px;
}

.product-items .item .preview-box .view {
    margin: 0 30px;
    width: 50px;
}

/*翻页*/
.news-list-pages {
    padding: 5px 0 25px;
    text-align: center;
}

/*产品详情页面开始*/
.detail-main .detail-nav-box {
    border-bottom: 1px solid #e5e5e5;
}

.detail-main .detail-nav {
    width: 1280px;
    margin: 0 auto;

}

.detail-main .detail-nav .nav-menu {
    float: left;
    margin-top: 38px;
    font-size: 16px;
}

.detail-nav .nav-menu li {
    float: left;
    height: 45px;
    border-bottom: 2px solid transparent;
    margin-right: 50px;
    cursor: pointer;
    transition: all .3s ease-in;
    font-weight: bold;
}

.detail-nav .nav-menu .active {
    color: #f54a16;
    border-bottom: 2px solid #f54a16;
}

.detail-nav .crumbs-link {
    float: right;
    margin-top: 40px;
    color: #666666;
}

.detail-nav .crumbs-link a {
    color: #666666;
}

.detail-nav .crumbs-link a:hover {
    color: #f54c18;
}

.detail-main .show-box {
    background-color: #ffffff;
    min-height: 300px;
}

.detail-main .show-box .product-show {
    padding: 50px 0;
}

.detail-main .show-box .imgs-box {
    float: left;
    width: 510px;
    height: 430px;
}

.show-box .imgs-box .show-img {
    width: 510px;
    height: 335px;
    background-color: #ccc;
    position: relative;
}

.show-box .imgs-box .show-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.show-lists {
    margin-top: 10px;
}

.show-lists li {
    width: 120px;
    cursor: pointer;
    float: left;
    margin-left: 10px;
    opacity: .4;
    height: 90px;
    text-align: center;
    filter: alpha(opacity=40);
}

.show-lists li img {
    max-width: 100%;
    max-height: 100%;
}

.show-lists li:first-child {
    margin-left: 0;
}

.show-lists .active {
    border: 1px solid #f54a16;
    padding: 2px;
    box-sizing: border-box;
    opacity: 1;
    filter: alpha(opacity=100);
}

.instructions {
    float: left;
    height: 430px;
    width: 570px;
    margin-left: 60px;
    color: #333333;
}

.instructions h3 {
    font-weight: bold;
    font-size: 18px;
}

.instructions .product-info {
    margin-top: 36px;
    padding: 20px 0;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    font-size: 14px;
}

.instructions .product-info .info-name {
    float: left;
    max-width: 300px;
}

.instructions .product-info .info-name span {
    display: inline-block;
    max-width: 120px;
    vertical-align: middle;
}

.product-info .interaction-box {
    float: right;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-info .interaction-box li {
    float: left;
    margin-left: 40px;
    cursor: pointer;
}

.product-info .interaction-box .the-number {
    vertical-align: middle;
}

/*参数条例*/
.instructions .regulations-box {
    margin-top: 20px;
}

.instructions .regulations-box li {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}

/*联系方式*/
.tel-box {
    margin-top: 20px;
}

.tel-box span {
    color: #f54a16;
    font-size: 18px;
    font-weight: bold;
    float: left;
    margin-top: 11px;
}

.tel-box .consulting-btn {
    float: right;
    width: 180px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100px;
    background-color: #f54a16;
    color: #ffffff;
    font-size: 18px;
    transition: all .3s;
}

.tel-box .consulting-btn:hover {
    background-color: #da4400;
}

/*详情介绍*/
.detail-box {

}

.detail-box .detail-title {
    background-color: #ffffff;
    height: 60px;
}

.detail-box .detail-nav {
    padding-top: 14px;
}

.detail-box .detail-nav li {
    float: left;
    height: 45px;
    font-size: 18px;
    margin-right: 50px;
    min-width: 70px;
    border-bottom: 2px solid transparent;
}

.detail-box .detail-nav .active {
    border-bottom: 2px solid #333333;
}

.detail-box .content-box {
    margin: 30px 0 60px;
}

.detail-box .content {
    width: 1280px;
    margin: 0 auto;
}

.detail-box .content .content-left {
    float: left;
    background-color: #ffffff;
    width: 880px;
    min-height: 570px;
    position: relative;
    box-sizing: border-box;
    padding: 30px;
}

.detail-box .content .content-left .no-info {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -57px;
}

.detail-box .content .content-left img {
    max-width: 98%;
}

.detail-box .content .content-right {
    float: right;
    width: 360px;
}

/* 服务*/
.service-contact {

    border: 1px solid #e7e7e7;
    padding: 18px;
}

.service-contact dd {
    position: relative;
    width: 205px;
    padding: 15px 0;
}

.service-contact dd.line {
    border-bottom: 1px solid #f5f5f5;
}

.service-contact dd:last-child {
    width: 128px;
    border-top: 1px solid #f5f5f5;
}

.service-contact .ico {
    position: absolute;
    top: 19px;
    left: 0px;
}

.service-contact .con {
    padding-left: 38px;
}

.service-contact p {
    margin-bottom: 0;
    line-height: 22px;
}

.service-contact .qq-contact {
    background: none;
    width: 71px;
    display: block;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.service-contact .tel-ico {
    width: 30px;
    height: 30px;
    background: url("../images/tel-contact@icon.png")/*tpa=https:img.meixiang/new_web/images/tel-contact@icon.png*/ no-repeat;
}

.service-contact .qq-ico {
    width: 30px;
    height: 30px;
    top: 10px;
    background: url("../images/QQ-contact@icon.png")/*tpa=https:img.meixiang/new_web/images/QQ-contact@icon.png*/ no-repeat;
}

.service-contact .email-ico {
    width: 30px;
    height: 30px;
    background: url("../images/email-contact@icon.png")/*tpa=https:img.meixiang/new_web/images/email-contact@icon.png*/ no-repeat;
}

/* 服务*/


/*产品详情页面end*/


body {
    background-color: #f9f9f9;
}

/*banner*/
.product-banner {
    height: 280px;

    min-width: 1200px;
}

.product-banner h2 {
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    padding-top: 60px;
}

.product-banner h2 span {
    color: #f54a16;
}

/*参数盒子*/
.parameter-box {
    width: 856px;
    height: 88px;
    border-radius: 4px;
    margin: 20px auto 0;
    background-color: #ffffff;
    overflow: hidden;
}

.parameter-box .item {
    float: left;
    border-left: 1px solid #dce0e0;
    padding: 18px 0 18px 20px;
    width: 214px;
    height: 88px;
    box-sizing: border-box;
    font-size: 16px;
}

.parameter-box .item:first-child {
    border-left: none;
}

.parameter-box .item h4 {
    color: #333333;
    padding-left: 3px;
}

.parameter-box .parameter {
    color: #888888;
}

.parameter-box .parameter input {
    width: 60px;
    border: none;
    height: 30px;
    line-height: 30px;
    outline: none;
    text-align: center;
    font-size: 15px;
}

.parameter-box .parameter .number-box {
    border: none;
    width: 170px;
    height: 30px;
    color: rgb(168, 168, 168);
    font-size: 15px;
}

.parameter-box .parameter .active {
    color: rgb(72, 72, 72);
}

.parameter-box .quoteBtn {
    width: 130px;
    height: 50px;
    border: 0;
    background-color: #f54c18;
    color: #fff;
    float: right;
    margin: 16px 20px 0 0;
}

.parameter-box .quoteBtn:hover {
    background-color: #da4400;
}

/*产品主体*/
.product-main {

}

.product-main .product-nav {
    background-color: #ffffff;
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
    min-width: 1280px;
}

.product-main .product-nav .nav-boxs {
    width: 1280px;
    margin: 0 auto;
}

.product-nav .nav-boxs .nav-list {
    float: left;
    font-size: 16px;
    margin-top: 34px;
}

.product-nav .nav-boxs .nav-list li {
    height: 45px;
    border-bottom: 2px solid transparent;
    float: left;
    margin-right: 50px;
    cursor: pointer;
    transition: all .3s ease-in;
    font-weight: bold;
}

.product-nav .nav-boxs .nav-list li a {
    color: #0e0509;
    display: inline-block;
    line-height: 0;
}

.product-nav .nav-boxs .nav-list li:hover {
    border-bottom: 2px solid #f54a16;
}

.product-nav .nav-boxs .nav-list .active {
    color: #f54a16;
    border-bottom: 2px solid #f54a16;
}

.product-nav .nav-boxs .nav-list .active a {
    color: #f54a16;
}

.product-nav .nav-boxs .instructions-text {
    float: right;
    color: #666666;
    margin-top: 38px;
}

.product-nav .nav-boxs .instructions-text a {
    color: #666666;
}

.product-nav .nav-boxs .instructions-text a:hover{
    color: #f54a16;
}


/* 产品展示 */
.product-show {
    display: flex;
    border-top: #b1b0b0 solid 2px;
   
}

/* 导航 */
.product-show .product_nav {
    width: 250px;
    background-color: #fff;
     /* border-right: #b1b0b0 solid 1px; */
}

.product-show .product_nav .nav_list li {
    /* height: 65px; */
    width: 100%;
    line-height: 65px;
    border-bottom: #f5f5f5 solid 1px;
    box-sizing:border-box;
}

.product_nav .nav_list li div {
    padding-left: 10px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: solid 2px #c6c4c4;
}

.product_nav .nav_list li div:hover {
    border-right: #da4400 solid 3px;
}

.product_nav .nav_list .list_child {
    display: none;
    color: #7c7b7b;

}

.product_nav .nav_list .list_child li {
    border-bottom: #c6c5c5 solid 1px;
    padding-left: 25px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
}
.product_nav .nav_list .list_child li:hover {
      border-right: #da4400 solid 3px;
}


.nav_list .list_child li {
    background-color: #f5f5f5;
}

/* 选中 */
.selected {
    border-right: #da4400 solid 3px;
    background-color: #da4400 !important;
    color: #fff;
}

/* 右侧展示区域 */
.product-show .right_show {
    padding: 25px;
    /* width: 100%; */
    /* height: 100%; */
    box-sizing: border-box;
    flex: 1;
}
/* 卡片 */
.product-show .right_show .card {
    width: 100%;
    /* height: 1000px; */
    background-color: #fff;
    box-shadow: 0px 0px 10px 10px rgb(223, 224, 224);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* 卡片中所有的产品列表 */
.right_show .card .product_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 20px;
    
}

/* 列表中的标题 */
 .card .product_list h2 {
    width: 100%;
    height: 60px;
    margin: 20px 0;
    background-color: #da4400;
    text-align: center;
    line-height: 60px;
    color: #fff;
    position: relative;
    font-size: 30px;
}

 .card .product_list h2::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-right: 30px solid transparent; /* 左边透明 */
    border-top: 30px solid transparent; /* 右边透明 */
    border-bottom: 30px solid transparent; /* 右边透明 */
    border-left: 30px solid #fff; /* 设置底部为红色 */
    position: absolute;
    top: 0;
    left: 0;
 }

  .card .product_list h2::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 30px solid transparent; /* 左边透明 */
    border-top: 30px solid transparent; /* 右边透明 */
    border-bottom: 30px solid transparent; /* 右边透明 */
    border-right: 30px solid #fff; /* 设置底部为红色 */
    position: absolute;
    top: 0;
    right: 0;
 }

/* 列表中的内容 */
 .card .product_list .product_list_content {
    height: 100%;
    width: 100%;
 }

 .product_list_content .content_list {
    /* display: flex;
    justify-content: space-evenly;
    align-items: center; */
    /* flex-wrap: wrap; */
    height: 100%;
    width: 100%;
   
 }

 .product_list_content .content_list .list-item {
     /* width: 100%; */
     flex: 1;
     height: 350px;
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-bottom: 20px;
 }

 

 .content_list .list-item .product-img {
    height: 90%;
    display: flex;
 }

 .list-item .product-img img {
    height: 100%;
    /* width: 70%; */
 }

.list-item .product-title  {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;

 }

 .list-item .product-text {
    width: 300px;
    height: 100%;
    overflow: hidden;
    border: #00000029 solid 3px;
    color: #000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;  
    margin-left: 55px;
    background-color: #75727214;
    font-size: 16px;
    /* text-indent: 30px;  */
/* 
    text-indent: -1.6em; 
    text-align: justify; 
    margin-left: 0.5em;  */
 }





.recommend-center {
    width: 1280px;
    margin: 0 auto;
}

.recommend-box {
    float: left;
    margin: 20px 0;
    width: 930px;
    min-height: 500px;
}

.recommend-box .items-box {
    min-height: 400px;
    background-color: #ffffff;
}

.recommend-box .item {
    padding: 40px 30px;
    font-size: 14px;
    border-bottom: 1px solid #eeeeee;
}

.recommend-box .item:after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    clear: both;
}

.recommend-box .item .item-left {
    width: 660px;
    float: left;
}

.recommend-box .item .title {
    height: 26px;
    line-height: 26px;
}

.recommend-box .item .sign {
    font-size: 20px;
    vertical-align: top;
}

.recommend-box .item .des {
    font-size: 12px;
    margin: 10px 0 0 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-box .item .item-right {
    float: right;
}

.recommend-box .item .item-right .view-detail-btn {
    display: inline-block;
    padding: 0 20px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background-color: #eeeeee;
    color: #333333;
    border-radius: 20px;
    margin-top: 10px;
    transition: all .3s;
    min-width: 80px;
}

.recommend-box .item .item-right .view-detail-btn:hover {
    color: #ffffff;
    background-color: #f54a16;
}

.news-list-pages {
    padding: 20px 0;
    text-align: center;
}

/*右侧计价*/
.recommend-center .sidebar {
    width: 320px;
    margin-top: 20px;
}

.recommend-center .sidebar .recommend-mod {
    padding: 20px 10px 0;
    border-radius: 3px;
    margin-bottom: 10px;
    background-color: #ffffff;
}

.recommend-center .sidebar .recommend-mod .hd {
    padding: 0 10px;
    height: 24px;
    position: relative;
}

.recommend-center .sidebar .recommend-mod .hd .space {
    position: absolute;
    left: -10px;
    top: 1px;
    width: 4px;
    height: 22px;
    background-color: #f54c18;
}

.recommend-center .sidebar .recommend-mod .hd .more {
    margin-top: 2px;
}


.recommend-center .sidebar .recommend-mod .hd .more {
    margin-top: 2px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list {
    margin-top: 2px;
    padding: 0 10px 10px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li {
    padding: 15px 0;
    border-top: 1px solid #e6e6e6;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li:hover {
    background-color: #f4f7fa;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li:first-child {
    border-top: 0;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner {
    position: relative;
    display: block;
    height: 85px;
    padding: 0 10px 0 135px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner .pic {
    overflow: hidden;
    position: absolute;
    width: 122px;
    height: 80px;
    top: 0;
    left: 0;
    background-color: #999;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner .pic img {
    width: 122px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner .info {
    line-height: 1.3;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner .info .time {
    margin-top: 12px;
    margin-bottom: 2px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-project-list ul li .inner .info .time i {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 2px 0 0;
    width: 14px;
    height: 14px;
    background: url("../images/news/time@icon.png")/*tpa=https:img.meixiang/new_web/images/news/time@icon.png*/;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-product-list ul {
    overflow: hidden;
    padding: 10px 0 10px 10px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-product-list ul li {
    border-radius: 20px;
    overflow: hidden;
    float: left;
    background-color: #eeeeee;
    padding: 5px 12px;
    margin-right: 10px;
    margin-bottom: 15px;
    display: block;
    font-size: 12px;
}

.recommend-center .sidebar .recommend-mod .bd .craft-show-list ul {
    overflow: hidden;
    padding: 12px 10px;
}

.recommend-center .sidebar .recommend-mod .bd .craft-show-list ul li {
    width: 33.33%;
    float: left;
}

.recommend-center .sidebar .recommend-mod .bd .craft-show-list ul li .item {
    padding: 12px 0;
}

.recommend-center .sidebar .recommend-mod .bd .craft-show-list ul li .item p {
    margin-top: 5px;
}


.recommend-center .sidebar .recommend-mod .bd .recommend-office-list ul {
    overflow: hidden;
    padding: 10px 10px;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-office-list ul li {
    overflow: hidden;
    border-bottom: 1px solid #e1e3e5;
    padding: 10px 0;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-office-list ul li span {
    overflow: hidden;
    float: left;
    padding: 0 9px;
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
}

.recommend-center .sidebar .recommend-mod .bd .recommend-office-list ul li:last-child {
    border-bottom: 0;
}

.recommend-center .sidebar .recommend-mod .bd .more-project {
    display: block;
    background-color: #eeeeee;
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 30px;
    min-width: 120px;
    margin: 10px auto 20px;
    transition: all .3s;
}

.recommend-center .sidebar .recommend-mod .bd .more-project:hover {
    background-color: #f54c18;
    color: #ffffff;
}

.recommend-center .sidebar .recommend-mod .bd .more-project span {
    font-size: 16px;
    font-weight: bold;
}

/*产品推荐详情*/
.recommend-box .diff-title {
    color: #333333;
    padding: 30px 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.recommend-box .diff-detail {
    padding: 40px 40px;
    text-align: left;
    font-size: 14px;
    word-break: break-word;
    background-color: #ffffff;
}

.recommend-box .diff-detail img {
    max-width: 95%;
    margin: 20px 0;
}

.recommend-box .the-gift {

    width: 926px;
    height: 136px;
    margin-top: 15px;
    position: relative;
}

.recommend-box .the-gift .a-gift-btn {
    float: right;
    margin: 50px 75px 0 0;
    font-size: 16px;
    display: inline-block;
    padding: 0 20px;
    min-width: 120px;
    color: #ffffff;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #f84a34;
    border-radius: 20px;
    transition: all .3s ease-in;
}

.recommend-box .the-gift:hover .a-gift-btn {
    box-shadow: 0 0 6px rgba(0, 0, 0, .6);
}

.recommend-box .related-box {
    margin-top: 15px;
    background-color: #ffffff;
}

.recommend-box .related-box .related-title {
    padding: 25px 0 25px 40px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #eeeeee;
}

.recommend-box .related-box .related-lists {
    padding: 38px 28px;
    margin: 0 0 20px -20px;
}

.related-lists .list {
    float: left;
    display: inline-block;
    width: 410px;
    margin-left: 20px;
    color: #333333;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.related-lists .list a {

}

.related-lists .list span {
    margin-right: 3px;
}

.related-lists .list > a:hover {
    color: #e84800;
    text-decoration: underline;
}