.mod-detail .content {
    width: 780px;
    margin: 0 auto;
}

.mod-detail .detail-wrap .bg {
    background-color: #fff;
    left: 0;
    right: 0;
    height: 240px;
    position: absolute;
    z-index: -1;
}

.mod-detail .info {
    float: left;
    margin-top: 60px;
}

/*.mod-detail .like-wrap {*/
    /*width: 40px;*/
    /*height: 60px;*/
    /*background: #f2f2f2;*/
    /*line-height: 20px;*/
    /*text-align: center;*/
    /*color: #666;*/
    /*cursor: pointer;*/
    /*float: left;*/
    /*border-radius: 4px;*/
/*}*/

/*.mod-detail .like-wrap .iconfont {*/
    /*display: block;*/
    /*margin-top: 10px;*/
/*}*/

/*.mod-detail .like-wrap:hover,*/
/*.mod-detail .like-wrap.active {*/
    /*background: #1683FB;*/
    /*color: #fff;*/
/*}*/


.like-wrap{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.like-wrap .like-btn{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    border: 1px solid #1AB15D;
    color: #1AB15D;
    margin-bottom: 10px;
    font-size: 1.2em;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.like-wrap .like-btn.active{
    background-color: #1AB15D;
}
.like-wrap .like-btn.active{
    color: #fff;
    animation: likeAnim .5s;
    -moz-animation: likeAnim .5s;
    -webkit-animation: likeAnim .5s;
    -o-animation: likeAnim .5s;
}

.like-wrap .like-btn:hover{
    background-color: #00b33b;
    color: #fff;
}
@keyframes likeAnim{
    0%{

    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}

@-moz-keyframes likeAnim{
    0%{

    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}
@-webkit-keyframes likeAnim{
    0%{
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}

@-o-keyframes likeAnim{
    0%{
    }
    60%{
        transform:scale(1.4);
        -webkit-transform:scale(1.4);
        -moz-transform:scale(1.4);
        -o-transform:scale(1.4);
    }
    100%{
        transform:scale(1);
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -o-transform:scale(1);
        background-color: #00b33b;
    }
}

.info .info-wrap {
    display: inline-block;
}

.info .text {
    overflow: hidden;
    margin-left: 50px;
    margin-top: -6px;
    text-align: left;
}

.info .name {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    max-width: 380px;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.info .desc {
    font-size: 15px;
    color: #999;
    max-width: 380px;
    margin-top: 7px;
}

.mod-detail .link {
    margin: 20px 0;
}

.link .buy {
    display: inline-block;
    padding: 5px 20px;
    background-color: #ff6666;
    color: #fff;
    margin-right: 30px;
}

.link .try {
    display: inline-block;
    padding: 5px 20px;
    background-color: #2ecbda;
    color: #fff;
}

.mod-detail .user {
    color: #999;
    line-height: 54px;
}

.user .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

.mod-detail .cover-img-wrap {

    padding-top: 100%;
    background-size: cover;
    background-position: 50% 50%;
}




.mod-detail .user-share{
    margin-top: 10px;
}
.mod-detail .img-panel{
    margin: 10px 0;
}

.mod-detail .top-overview-panel h3{
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
}


.mod-detail .detail-panel .article-detail {
    margin: 10px 0;
}

.mod-detail .img-panel img {
    height: 80px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.mod-detail .like-panel {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.like-panel .like-count {
    color: #00b33b;
}

.like-panel .like-arrow {
    background-color: #f2f2f2;
    color: #999;
    display: inline-block;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    margin-left: 5px;
    cursor: pointer;
}

.like-panel .like-arrow:hover {
    background-color: #00b33b;
    color: #fff;
}

.like-panel .like-users {
    position: relative;
    overflow: hidden;
}

.like-panel .like-user-wrap {
    margin-top: 5px;
}

.like-panel .avatar {
    width: 30px;
    height: 30px;
    margin-left: 9px;
    border-radius: 50%;
}

.mod-comment {
    padding: 20px 0;
}

.share-wrap {
    margin: 0;
}

@media (max-width: 800px) {
    .mod-detail .content {
        width: 96%;
        padding: 0 2%;
        margin: 0 auto;
    }

    .mod-detail .detail-wrap {
        width: 100%;
        float: left;
    }

    .mod-detail .top-overview-panel {
        display: none;
    }

    .mod-detail .l-s {
        width: 100%;
    }

    .mod-detail .r-s {
        width: 100%;
    }

    .tabhead, .tabbody .overview-panel {
        display: block;
        margin-top: 10px;
    }

    .detail-wrap .product-title {
        text-align: center;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
        font-weight: bold;
        color: #666;
    }

    .cover-img-wrap {
        width: 100%;
        max-width: 100%;
    }

    .mod-detail .img-panel img {
        height: 40px;
    }

    .tab-wrapper .tabhead {
        width: 100%;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        margin-top: 10px;
    }

    .tab-wrapper .tabhead span {
        display: inline-block;
        width: 25%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 18px;
    }

    .tab-wrapper .tabhead span.active {
        border-bottom: 2px solid #c00;
    }

    .tabbody .checkall, .moreevalueting, .moremsg {
        height: 50px;
        line-height: 50px;

        background: -webkit-gradient(linear, left top, left bottom, color-start(0.05, #ffffff), color-stop(1, #f5f5f5));
        background: -moz-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: -o-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: -ms-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: linear-gradient(to bottom, #ffffff 5%, #f5f5f5 100%);
        background: -webkit-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
    }

    .tabbody .detail-panel, .r-s .evaluating-panel, .r-s .msg-panel {
        /*display: none;*/
    }

    .content .head-product-title {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        height: 30px;
        line-height: 30px;
        margin-top: 10px;
    }
}

@media (min-width: 800px) {
    .mod-detail .content {
        width: 1100px;
        margin: 0 auto;
        max-width: 100%;
    }

    .mod-detail .detail-wrap {
        width: 38.2%;
        float: left;
    }

    .mod-detail .top-overview-panel {
        width: 50%;
        float: left;
        margin-left: 50px;
    }

    .mod-detail .l-s {
        width: 65%;
        float: left;
    }

    .mod-detail .r-s {
        width: 31%;
        float: right;
    }

    .tabhead, .tabbody .overview-panel {
        display: none;
    }

    .checkall {
        height: 50px;
        line-height: 50px;

        background: -webkit-gradient(linear, left top, left bottom, color-start(0.05, #ffffff), color-stop(1, #f5f5f5));
        background: -moz-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: -o-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: -ms-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        background: linear-gradient(to bottom, #ffffff 5%, #f5f5f5 100%);
        background: -webkit-linear-gradient(top, #ffffff 5%, #f5f5f5 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
    }

    .content .head-product-title {
        /*text-align: center;*/
        font-size: 25px;
        font-weight: 500;
        height: 45px;
        line-height: 45px;
        margin-bottom: 10px;
    }
    .comment-panel{
        width:65%;
    }
}


.overview-panel-sum p {
    padding: 15px;
    color: #666;
    font-size: 15px;
    padding-left: 35px;
}

.detail-panel-pros ul, .detail-panel-cons ul {
    list-style: square;
    margin-left: 37px;
}

.detail-panel-pros ul li, .detail-panel-cons ul li {
    margin: 10px 0;
}

.tabbody{
    margin-bottom: 10px;
}
/*.tabbody .detail-panel{
    height: 800px;
    overflow: hidden;
}*/
.tabbody .detail-panel .sec-header{
    margin-bottom: 10px;
}
.checkall{

    cursor: pointer;
    text-align: center;
    background-color: #eee;
    display: none;
}

.checkall span {
    margin: 0 5px;
}
.edit-product{
    border:1px solid #eee;
    margin: 15px 0;
}
.edit-product .edit-product-header{
    border-bottom:1px solid #eee;
    height:40px;
    line-height: 40px;
}
.edit-product .edit-product-header span{
    margin-left:15px;
    color: #666;
    font-size:20px;
}
.edit-product .edit-product-body{
    text-align: center;
}
.edit-product .edit-product-body p{
    height:70px;
    line-height:70px;
}
.edit-product .edit-product-body a{
    display: inline-block;
    padding:12px 64px;
    background:#00AB6B;
    color: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    font-size:18px;
}
.tab-wrapper img{
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 10px;
    margin-top: 10px;
    vertical-align: middle;
}