﻿
.admin-product-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #009688;
    padding-bottom: 10px;
    color: #129897;
    
}
    .admin-product-nav h3 {
        font-weight: bold;
    }

    .admin-product-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

.admin-product-item .img{
    width:180px;
    height:180px;
    overflow:hidden;
}
    .admin-product-item .img img{
        width:100%;
    }
    .admin-product-item .text {
        width: calc(100% - 180px);
        padding-left: 20px;
        box-sizing: border-box;
    }

        .admin-product-item .text h3 {
            display: inline;
            color: rgba(18, 152, 151, 1);
            font-size: 24px;
            vertical-align: bottom;
            line-height: 33px;
            font-weight:bold;
    }
.admin-product-item .text p {
    color: rgba(146, 146, 146, 1);
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

.admin-product-teble table {
    width: 100%;
    margin-top: 15px;
}
    .admin-product-teble table tr td {
        border: none;
        color: rgba(146, 146, 146, 1);
        font-size: 16px;
        padding: 7px 5px;
    }

.admin-product-title {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #E5EFEF;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
    .admin-product-title h3 {
        display: inline-block;
        line-height: 35px;
        border-bottom: 2px solid #009688;
        color:#009688;
        line-height:40px;
        font-weight:bold;
    }
.admin-productUpdata i {
    font-size: 14px;
    color: #ff0000;
}
.admin-productUpdata .text {
    color: rgba(146, 146, 146, 1);
    font-size: 14px;
    line-height: 20px;
    display:inline-block;
    line-height:38px;
}
.admin-productUpdata-img{
    display:inline-block;
    vertical-align:middle;
}
    .admin-productUpdata-img .img-list{
        width:150px;
        height:150px;
        display:inline-block;
        overflow:hidden;
        margin-right:10px;
        margin-top:10px;
        position:relative;
        
    }
        .admin-productUpdata-img .img-list.video-list::before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background-color: rgba(146, 146, 146, .53);
            position: absolute;
            left: 0;
            top: 0;
            background-image: url(../images/bf1.png);
            background-repeat: no-repeat;
            background-size: 20% 20%;
            background-position: center;
        }
        .admin-productUpdata-img .img-list span {
            position: absolute;
            bottom: -100%;
            left: 0;
            text-align: center;
            line-height: 35px;
            width: 100%;
            color: #fff;
            font-size: 14px;
            background-color: rgba(18, 152, 151, .8);
            transition: all 0.3s;
            cursor: pointer;
        }
        .admin-productUpdata-img .img-list:hover span{
            bottom:0;
            
        }
        .admin-productUpdata-img .img-list img, .admin-productUpdata-img .img-list video{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.admin-productUpdata-but {
    width: 148px;
    height: 148px;
    margin-right: 10px;
    display: inline-block;
    border: 1px dashed #888888;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    margin-top: 9px;
}

    .admin-productUpdata-but::before {
        content: '';
        width: 20px;
        height: 1px;
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translate(-50%,0);
        background-color: rgba(146, 146, 146, 1);
    }
    .admin-productUpdata-but::after {
        content: '';
        width: 1px;
        height: 20px;
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translate(-50%,0);
        background-color: rgba(146, 146, 146, 1);
    }
    .admin-productUpdata-but span {
        color: rgba(146, 146, 146, 1);
        font-size: 13px;
        display: inline-block;
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        text-align: center;
    }
