<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    /*background: #FAF8F6;*/
}

h2 {
    margin: 0 0 32px 0;
    justify-content: left;
    font-size: 30px;
    border-bottom: 1px #d0d0d0 solid;
    padding-bottom: 12px;
}

.container.row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.caption {
    font-size: 22px;
    padding-bottom: 12px;
    margin-bottom: 56px;
    border-bottom: 1px #d0d0d0 solid;
}

.products-category {
    min-width: 240px;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    border: #CDCDCD 1px solid;
    border-radius: 8px;
    padding: 24px 24px;
}

.products-category div {
    padding: 6px 0;
}

.products-category .category-name:not(:first-child) {
    margin-top: 16px;
}

.products-category div:not(:first-child) {
    margin-top: 8px;
}

.product-list-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-content: start;
}

.product-list-5 {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-content: start;
}

.image-container {}

.hot-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-name {
    cursor: pointer;
}

.category-name summary {
    padding: 4px 0 8px 0;
    font-weight: 700;
    border-bottom: 1px #CDCDCD solid;
    color: #545b64;
}

.series-name a {
    padding: 4px 0;
    margin-left: 16px;
    font-weight: normal;
    color: #333333;
}

.category-name.selected a,
.series-name.selected a {
    color: #4CAF50;
    font-weight: normal;
}

/******è¯¦æƒ…é¡µé¢********/
.product-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-image-info {
    display: flex;
    flex-direction: row;
}

.product-image {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.product-big-image {
    width: 400px;
    height: 400px;
    margin: 10px 0;
    border-radius: 2px;
    transition: all 1s;
}

.product-small-img-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-content: start;
}

.product-small-img-list img {
    width: 70px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 40px;
    font-weight: lighter;
    margin-bottom: 24px;
    color: #2d2d2d;
}

h3 {
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 24px;
    color: #2d2d2d;
}

h4 {
    font-size: 26px;
    font-weight: lighter;
    margin-bottom: 32px;
    color: #2d2d2d;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 8px;
}

ul.product-param {
    display: flex;
    flex-direction: column;
}

ul.product-param li {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #adadad;
    padding: 16px 0;
}

ul.product-param li:last-child {
    border-bottom: 0;
}

ul.product-param li span {
    white-space: nowrap;
}

ul.product-param li span:first-child {
    width: 150px;
}

ul.product-param li span:last-child {
    flex: 1;
    text-align: right;
    color: #adadad;
}

ul.product-all-param {
    display: flex;
    flex-direction: column;
}

ul.product-all-param li {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0;
}

ul.product-all-param li:last-child {
    border-bottom: 0;
}

ul.product-all-param li span {
    white-space: nowrap;
    font-size: 14px;
}

ul.product-all-param li span:first-child {
    width: 200px;
    text-align: right;
    padding-right: 32px;
    color: #414141;
}

ul.product-all-param li span:last-child {
    flex: 1;
    color: #676767;
}


.product-intro {
    margin-top: 50px;
}

.acce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-content: start;
}

.card-v {
    box-shadow: 0 0 8px #d6d6d6;
}

.card-v .card-info .title {
    /*text-align: center;*/
}

.tag-select {
    display: flex;
    flex-wrap: wrap;
    /* ä½¿å­å…ƒç´&nbsp;æ¢è¡Œ */
    gap: 16px;
    /* å…ƒç´&nbsp;ä¹‹é—´çš„é—´éš” */
    background-color: #F3F2EF;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* éšè—é»˜è®¤çš„ checkbox */
.tag-select input[type="checkbox"] {
    display: none;
}

/* è‡ªå®šä¹‰çš„æ&nbsp;·å¼ */
.tag-select label {
    font-size: 14px;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
}

/* é€‰ä¸­çŠ¶æ€çš„æ&nbsp;·å¼ */
.tag-select input[type="checkbox"]:checked+label {
    background-color: #4CAF50;
    color: #fff;
}

.industry_box {
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-content: start;
}

.industry_icon {
    text-align: center;
}

.industry_title {
    font-size: 24px;
    line-height: 1.1;
    color: rgb(51, 51, 51);
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.industry_content {
    font-size: 14px;
    line-height: 28px;
    color: rgb(102, 102, 102);
    margin-left: 15px;
    margin-right: 15px;
}

/* å“åº”å¼å¸ƒå±€ */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .products-category {
        display: none;
    }

    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-content: start;
    }

    #hot {
        display: none;
    }

}</pre></body></html>