/*
* 通用样式，每个html文件都需要引用
*/
html, body, div, span, applet, object, iframe, image, h5, h4, h3, h2, h1, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
}

body * {
    box-sizing: border-box;
    flex-shrink: 0;
}
body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei, serif;
}
button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

button:active {
    opacity: 0.6;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
.cursor-pointer {
    cursor: pointer;
}

/* 固定联系方式样式 */
.fixed-list {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #E5E5E5;
    transform: translateY(-50%);
}
.fixed-list__item {
    position: relative;
    height: 84px;
    width: 74px;
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
}
.fixed-list__item-text {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}
.fixed-list__item-img {
    width: 32px;
    height: 32px;
    margin-top: 10px;
}
.fixed-list__item:hover .fixed-list__item-text {
    color: #333333;
}
.fixed-list__more {
    display: none;
    position: absolute;
    top: 0;
    left: -220px;
    text-align: right;
    width: 220px;
    padding-right: 20px;
}
.fixed-list__more-img {
    padding: 5px;
    width: 120px;
    height: 120px;
    background: #fff;
    box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}
.fixed-list__item:hover .fixed-list__more {
    display: block;
}
.fixed-list__more-content {
    background: #FFFFFF;
    box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    padding: 10px;
}
.fixed-list__more-text {
    font-size: 13px;
    font-weight: 400;
    color: #999999;
}
.fixed-list__phone {
    margin-right: 10px;
}
.fixed-list__link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    margin-top: 5px;
}
.product-tab::-webkit-scrollbar { display: none }
.no-more {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #999999;
    margin: 40px auto 20px;
}

/*分页*/
.pagination-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 100px auto 20px;
}
.pagination-list .page-item {
    padding: 10px 16px;
    border-radius: 3px;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    color: #999999;
    margin: 0 3px;
    cursor: pointer;
}
.pagination-list .page-item:hover {
    background: #7B9059;
    color: #fff;
    transition: all 0.3s;
}
.pagination-item_active {
    background: #7B9059;
    color: #fff !important;
    border: none !important;
}

@media screen and (min-width: 769px) {
    html {
        min-width: 1400px;
    }
    .h5-hide {
        display: flex !important;
    }
    .h5-show {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .fixed-list {
        display: none;
    }
    .h5-hide {
        display: none !important;
    }
    .h5-show {
        display: flex !important;
    }
}
