figure {
    width: 100%;
    height: var(--banner-height);
    background-image: url("/images/product/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

figure figcaption {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    height: max-content;
    margin-top: 80px;
    position: relative;
}

figure figcaption::after {
    content: ' ';
    height: 2px;
    width: 150px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

.product_video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product_video_content {
    width: var(--content-width);
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -72px;
    padding-bottom: 60px;
}

.product_video_core {
    width: 640px;
    height: 360px;
    background-color: #000;
    margin-bottom: 10px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.product_video_core video {
    width: 100%;
    height: 100%;
    display: block;
}

.product_video_content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_video_content ul li {
    margin: 0 14px;
}

.product_video_content ul li a {
    font-size: 12px;
    line-height: 24px;
    color: var(--theme-color);
    text-decoration: underline;
}

.video_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_mask span {
    color: #fff;
    font-size: 50px;
    width: max-content;
    height: max-content;
    cursor: pointer;
}

.video_mask span:hover {
    transform: scale(1.1);
    transition: all .2s;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: rgba(247, 247, 247, 1);
}

.breadcrumb_content {
    width: var(--content-width);
    height: 100%;
    display: flex;
}

.product_content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product_content_core {
    width: var(--content-width);
    padding: 50px 30px;
    padding-top: 10px;
    box-sizing: border-box;
    display: flex;
}

.product_content_title {
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #efefef;
    margin-bottom: 14px;
}

.product_content_left {
    width: calc(2/8 * 100%);
    margin-right: 40px;
    display: flex;
    flex-direction: column;
}

.product_content_left_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product_content_left_ul_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
    cursor: pointer;
}

.product_content_left_ul_title span:first-child {
    font-size: 12px;
    color: var(--p-color);
    text-align: left;
}

.product_content_left_ul_title a {
    font-size: 12px;
    color: var(--p-color);
    text-align: left;
}

.product_content_left_ul_title span:last-child {
    font-size: 12px;
    color: var(--p-color);
    transition: all .2s;
}

.product_content_left_ul_title:hover span,
a {
    color: var(--theme-color);
}

.product_content_left_li {
    display: flex;
    flex-direction: column;
    display: none;
    padding-left: 14px;
    box-sizing: border-box;
    margin-top: -10px;
}

.product_content_right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product_content_right_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_content_right_flex_top {
    margin-bottom: 20px;
    width: 100%;
}

.product_li {
    width: calc(25% - 23px);
    margin-right: 30px;
    float: left;
    /* background-color: #000; */
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_li::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.product_li:nth-child(4n) {
    margin-right: 0;
}

.product_item_img {
    width: 100%;
    height: 166px;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--p-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.product_item_img img {
    width: 100%;
    display: block;
}

.product_item_img img:hover {
    transform: scale(1.1);
    transition: all .2s;
}

.product_li span {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.product_li a {
    outline: none;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 24px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    background: var(--theme-color);
    display: block;
    border: 1px solid transparent;
    text-align: center;
}

.product_li a:hover {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    background-color: transparent;
}

.pagination {
    width: 100%;
    height: 34px;
    display: flex;
    justify-content: center;
}