.productdetail {
    background: ;
}

.productdetail .photo {
    float: left;
    overflow: hidden;
}

.productdetail .photo>span {
    display: block;
}

.productdetail .photo>span img{
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.productdetail .images {
    overflow: hidden;
    position: relative;
}

.productdetail .images>ul {
    width: 10000%;
}

.productdetail .images>ul:after {
    display: block;
    content: '';
    cleart: both;
}

.productdetail .images>ul>li {
    float: left;
}

.productdetail .images>ul>li>span>a>img {
    display: block;
    width: 100%;
}

.productdetail dir {
    padding-top:30px;
    border-top: 1px solid #f0f0f0;
}

.productdetail dir:after {
    display: block;
    content: '';
    clear: both;
}
.productdetail dir>dl{
    margin-bottom: 0;
}
.productdetail dir>dl:after {
    display: block;
    content: '';
    clear: both;
}

.productdetail dir>dl>dt {
    float: left;
    margin-right: 8px;
    opacity: .88;
}

.productdetail dir>dl>dt b {
    font-weight: inherit;
}

.productdetail dir>dl>dd {
    float: left;
}

.productdetail dir>dl>dd i {
    font-style: inherit;
}

@media(min-width:992px) {
    .productdetail .photo>span+.images {
        margin:20px -10px 0 -10px;
    }

    .productdetail .images {
        margin: 0 -10px;
    }

    .productdetail .images>ul>li {
        width: .25%;
        padding: 0 10px;
    }

    .productdetail .images>ul>li>span {
        position: relative;
        display: block;
        cursor: pointer;
        overflow: hidden;
    }

    .productdetail .images>ul>li>span:before {
        display: block;
        content: '';
        border: 2px solid rgba(0, 0, 0, 0);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9;
        transition: .3s;
    }

    .productdetail .images>ul>li.on>span:before {
        border-color:#fc6b00;
    }

    .productdetail .images>ol {
        display: none;
    }

    .productdetail .images>dl {
        visibility: hidden;
        opacity: 0;
        transition: .3s;
    }

    .productdetail .images:hover>dl {
        visibility: visible;
        opacity: 1;
    }

    .productdetail .images>dl>* {
        position: absolute;
        z-index: 9;
        top: 50%;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        transform: rotate(45deg);
        cursor: pointer;
        transition: .3s;
        border-style: solid;
        border-color: rgb(15,25,45);
    }

    .productdetail .images>dl>*[class*='disabled'] {
        cursor: no-drop;
    }

    .productdetail .images>dl>dt {
        left: 15px;
        border-width: 0 0 2px 2px;
    }

    .productdetail .images>dl>dd {
        right: 15px;
        border-width: 2px 2px 0 0;
    }

    .productdetail .images>dl>dt:hover,
    .productdetail .images>dl>dd:hover {
        border-color: #fc6b00;
    }
}

@media(max-width:991px) {
    .productdetail .photo {
        width: 100%;
        float: none;
    }

    .productdetail .photo>span.more {
        display: none;
    }

    .productdetail .images>ul>li {
        width: 1%;
    }

    .productdetail .images>ul>li>span>a>img {
        width: auto;
        margin: 0 auto;
    }

    .productdetail .images>ol {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0;
    }

    .productdetail .images>ol>li {
        display: inline-block;
        cursor: pointer;
    }

    .productdetail .images>ol>li:before {
        display: block;
        content: '';
        border-radius: 15px;
        box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    }

    .productdetail .images>ol>li:before {
        margin: 0 2px 0 3px;
        width: 5px;
        height: 5px;
    }

    .productdetail .images>ol>li.active:before {
        background: #fc6b00;
    }

    .productdetail .images>dl {
        display: none;
    }
}

@media(max-width:767px) {
    .productdetail aside {
        margin-bottom: 10px;
    }

    .productdetail dir {
        padding-top: 10px;
    }
}