/* 公共样式 */


/* 页头 */

body {
    min-width: 1440px;
}

header {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    /* position: fixed;
    top: 0;
    z-index: 99;
    transition: 0.2s linear; */
}

header.active {
    top: -100px;
}

.header-logo img {
    width: 200px;
    height: 80px;
}

.header-phone {
    line-height: 24px;
}

.header-phone span:nth-child(1) {
    color: rgba(153, 153, 153, 1);
}

.header-phone span:nth-child(2) {
    color: #B18A3D;
}

.header-phone::before {
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    background-image: url("../img/icon/serve-phone.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translate(0%, -50%);
}

header .logout {
    margin-left: 20px;
    padding: 0 30px;
    font-size: 20px;
    line-height: 40px;
    background: linear-gradient(225deg, rgba(177, 138, 61, 1) 0%, rgba(236, 218, 152, 1) 100%);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    border: none;
    border-radius: 20px;
    outline: none;
}


/* 导航 */

nav {
    width: 100%;
    background: #F3F3F1;
    /* position: fixed;
    top: 99px;
    transition: 0.2s linear;
    z-index: 99; */
}

nav.active {
    top: 0px;
}

.main-nav>li {
    width: 240px;
    height: 100%;
    text-align: center;
    position: relative;
}

.main-nav>li::after {
    content: "";
    display: block;
    width: 2px;
    height: 27px;
    background: #DFDFDF;
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translate(0%, -50%);
}

.main-nav>li:last-child::after {
    content: "";
    width: 0;
    height: 0;
}

.main-nav>li>a {
    display: block;
    width: 100%;
    height: 100%;
    color: #333333;
    font-size: 20px;
    line-height: 50px;
    font-weight: 700;
    text-decoration: none;
}

.meun-down-arrow {
    position: relative;

}

.meun-down-arrow::after {
    content: "";
    display: block;
    width: 15px;
    height: 10px;
    background-image: url("../img/icon/triangle-02.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translate(0%, -50%);
}

.main-nav>li:hover .meun-down-arrow::after {
    background-image: url("../img/icon/triangle-01.png");
}

.main-nav>li:hover>a span {
    color: #B18A3D;
    transition: 0.1s linear;
}

.main-nav>li:hover .main-sub-nav {
    visibility: visible;
    Opacity: 1;
    top: 50px;
}

.main-sub-nav {
    visibility: hidden;
    Opacity: 0;
    padding: 10px 0;
    background-color: #F3F3F1;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.1s linear;
}

.main-sub-nav li {
    font-size: 20px;
    line-height: 50px;
    padding: 5px 0;
}

.main-sub-nav li:hover a {
    color: #B18A3D;
}

.main-sub-nav li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* 栏目banner */

.category-banner {
    /* margin-top: 150px; */
}

.category-banner div {
    height: 400px;
    background-image: url("../img/banner/category-banner-1.jpg");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

/* 面包屑导航 */

.category-nav {
    border-bottom: 1px solid #DFDFDF;
}

.category-menu li {
    height: 100px;
    font-size: 20px;
    line-height: 100px;
    position: relative;
}

.category-menu li:hover a {
    color: #B18A3D;
}

.category-menu li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 27px;
    color: #333333;
    text-decoration: none;
}

.category-menu li.active a {
    color: #B18A3D;
}

.category-menu li.active::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #B18A3D;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

.category-breadcrumb::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    margin-right: 9px;
    background-image: url("../img/icon/icon-location.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.category-breadcrumb li {
    font-size: 18px;
    line-height: 26px;

}

.category-breadcrumb li a {
    display: block;
    padding: 0 10px;
    color: #999999;
}

/* 三级栏目导航 */

/* .category-sub-three-menu {
    width: auto;
    margin-top: 57px;
    margin-bottom: 60px;
    border-radius: 5px;
    border: 1px solid rgba(223, 223, 223, 1);
}

.category-sub-three-menu li {
    min-width: 220px;
    height: 40px;
    border-right: 1px solid rgba(223, 223, 223, 1);
}

.category-sub-three-menu li:last-child {
    border: none;
}

.category-sub-three-menu li:hover a {
    background: linear-gradient(223.09deg, rgba(177, 138, 61, 1) 0%, rgba(219, 172, 77, 1) 100%);
    color: rgba(255, 255, 255, 1);
}

.category-sub-three-menu li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    color: rgba(51, 51, 51, 1);
    text-decoration: none;
}

.category-sub-three-menu li.active {
    border: none;
}

.category-sub-three-menu li.active a {
    background: linear-gradient(223.09deg, rgba(177, 138, 61, 1) 0%, rgba(219, 172, 77, 1) 100%);
    color: rgba(255, 255, 255, 1);
} */

/* 栏目搜索 */

.category-search {
    padding-top: 50px;
    padding-bottom: 32px;
    background: rgba(244, 244, 244, 1);
}

.search-input {
    width: 600px;
    height: 60px;
    padding-left: 41px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(223, 223, 223, 1);
}

.search-input input {
    font-size: 18px;
    font-weight: 400;
    line-height: 60px;
    color: rgba(102, 102, 102, 1);
    border: none;
    outline: none;
}

.search-input input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 60px;
    color: rgba(153, 153, 153, 1);
}

.category-search-btn {
    height: 60px;
    padding: 0 35px;
    cursor: pointer;
}

.category-search-btn img {
    width: 26px;
    height: 26px;
}

.search-hot li {
    margin-right: 15px;
    font-size: 20px;
    font-weight: 400;
    line-height: 60px;
    color: rgba(102, 102, 102, 1);
}


/* 分页器 */

.page-list {
    margin-top: 45px;
}

.page-list ul li {
    width: 39px;
    height: 39px;
    margin-right: 13px;
    font-size: 12px;
    line-height: 39px;
    text-align: center;
    color: rgba(102, 102, 102, 1);
    border-radius: 2px;
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(238, 238, 238, 1);
    cursor: pointer;
}

.page-list ul li.active,
.page-list ul li:hover {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(225deg, rgba(177, 138, 61, 1) 0%, rgba(236, 218, 152, 1) 100%);
    border: 1px solid rgba(238, 238, 238, 1);
}


.page-list input {
    width: 80px;
    height: 39px;
    margin-right: 13px;
    font-size: 12px;
    line-height: 39px;
    color: rgba(102, 102, 102, 1);
    text-indent: 1rem;
    border: 1px solid rgba(238, 238, 238, 1);
}

.page-list>p {
    width: 50px;
    height: 39px;
    font-size: 12px;
    line-height: 39px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    border-radius: 2px;
    background: rgba(177, 138, 61, 1);
    border: 1px solid rgba(238, 238, 238, 1);
    cursor: pointer;
}

/* 栏目标题common */

.category-title-common h2 {
    height: 47px;
    margin-bottom: 5px;
    font-size: 32px;
    font-weight: 700;
    line-height: 42.23px;
    color: rgba(0, 0, 0, 1);
}

.category-title-common p {
    height: 39px;
    font-size: 22px;
    line-height: 29.04px;
    color: rgba(153, 153, 153, 1);
}

/* table-1 */

.table-box-1 {
    margin-bottom: 60px;
}

.table-box-1:last-child {
    margin-bottom: 0px;
}

.table-title-1 {
    font-size: 20px;
    line-height: 60px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    border: 1px solid #cfae6e;
    background-color: rgba(236, 218, 152, .1);
}

.table-1 {
    width: 100%;
}

.table-1 thead {
    /* background: #cfae6e; */
    background: rgba(219, 172, 77, 1)
}

.table-1 th,
.table-1 td {
    height: 60px;
    padding: 0 40px;
    font-size: 18px;
    line-height: 60px;
    font-weight: 500;
    color: #333333;
    text-align: left;
}

.table-1 th {
    color: #FFFFFF;
}

.table-1 tbody tr:nth-child(even) {
    background-color: rgba(244, 244, 244, .8);
}

/* 页脚 */

footer {
    padding-top: 43px;
    padding-bottom: 29px;
    border-top: 1px solid rgba(223, 223, 223, 1);
    color: rgba(51, 51, 51, 1);
}

.footer-menu>p {
    font-size: 20px;
    line-height: 29px;
}

.footer-menu li:nth-child(odd) a {
    font-size: 20px;
    line-height: 27px;
}

.footer-menu li:nth-child(even) {
    font-size: 20px;
    line-height: 27px;
    margin: 0 55px;
}

.footer-company-message-l>p {
    margin-top: 2px;
    margin-bottom: 3px;
    font-size: 32px;
    line-height: 43px;
    color: rgba(0, 78, 162, 1);
}

.footer-company-message-l li {
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 27px;
}

.friendLink {
    height: 50px;
    margin-top: 50px;
    margin-right: 50px;
}

.friendLink p {
    width: 400px;
    height: 50px;
    padding-left: 10px;
    font-size: 20px;
    line-height: 50px;
    border: 1px solid rgba(223, 223, 223, 1);
}

.friendLink p::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon/icon-right.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 14px;
    right: 15px;
    transform: rotate(90deg);
    z-index: 1;
}

.friendLink ul {
    max-height: 210px;
    overflow: auto;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(223, 223, 223, 1);
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 9;
}

.friendLink li {
    width: 400px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;

}

.friendLink li a {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 10px;
    text-decoration: none;
}

.friendLink li a:hover {
    background: rgba(244, 244, 244, 1);
}

footer .QR-code {
    width: 100px;
    margin-top: 50px;
}

footer .QR-code img {
    width: 95px;
    height: 95px;
}

footer .QR-code p {
    font-size: 20px;
    line-height: 29px;
}

footer .reference {
    margin-top: 36px;
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 29px;
}

footer .copyright {
    padding-top: 17px;
    font-size: 20px;
    line-height: 27px;
    border-top: 1px solid rgba(204, 204, 204, 1);
}

footer .copyright img {
    width: 18px;
    height: 20px;
}

footer .copyright span {
    margin-left: 30px;
}

footer .copyright span:first-child {
    margin: 0;
}



/* @media (max-width: 991px) {
    .footer-menu li:nth-child(even) {
        margin: 0 20px;
    }

    footer .copyright {
        flex-wrap: wrap;
    }



    .footer-menu ul {
        margin: 20px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer-menu li:nth-child(even) {
        margin: 0 20px;
    }
}

@media (max-width: 1199px) {
    .footer-menu {
        flex-wrap: wrap;
    }

    .footer-message {
        flex-wrap: wrap;
    }

    .footer-company-message-r {
        flex-wrap: wrap;
        width: 100%;
    }

    .footer-company-message-r>div {
        width: 100%;
    }

    footer .QR-code {
        order: -1;
        margin-right: 30px;
    }

    .reference {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .footer-menu li:nth-child(even) {
        margin: 0 40px;
    }
}

@media (max-width: 1299px) {
    .footer-company-message-l {
        padding-right: 30px;
    }
}

@media (min-width: 1300px) and (max-width: 1439px) {
    .footer-menu li:nth-child(even) {
        margin: 0 40px;
    }
}

@media (max-width: 1439px) {}

@media (min-width: 1440px) {} */
