/* #region 基本样式 */
html {
    font-size: 16px;
}

@media screen and (min-width: 375px) {
    html {
        /* iPhone6的375px尺寸作为16px基准，414px正好18px大小, 600 20px */
        font-size: calc(100% + 2 * (100vw - 375px) / 39);
        font-size: calc(16px + 2 * (100vw - 375px) / 39);
    }
}

@media screen and (min-width: 414px) {
    html {
        /* 414px-1000px每100像素宽字体增加1px(18px-22px) */
        font-size: calc(112.5% + 4 * (100vw - 414px) / 586);
        font-size: calc(18px + 4 * (100vw - 414px) / 586);
    }
}

@media screen and (min-width: 600px) {
    html {
        /* 600px-1000px每100像素宽字体增加1px(20px-24px) */
        font-size: calc(125% + 4 * (100vw - 600px) / 400);
        font-size: calc(20px + 4 * (100vw - 600px) / 400);
    }
}

@media screen and (min-width: 1000px) {
    html {
        /* 1000px往后是每100像素0.5px增加 */
        font-size: calc(137.5% + 6 * (100vw - 1000px) / 1000);
        font-size: calc(22px + 6 * (100vw - 1000px) / 1000);
    }
}

body {
    background: #fff8f2;
}

.wrapper {
    box-sizing: border-box;
    width: 1500px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    zoom: 1;
}

.clearfix::before,
.clearfix::after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

.img {
    font-size: 0;
}

.img a {
    display: block;
    width: 100%;
    height: 100%;
}

.img img {
    width: 100%;
    height: 100%;
}

/* #endregion */

/* #region 头部 */
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    transition: 0.3s;
}

.header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header .hide {
    display: none;
}

/* Logo */
.header .logo {
    display: flex;
    width: 372px;
}

.header .logo-img {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
}

.header .logo-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.header .logo-img img {
    width: 100%;
    height: 100%;
}

.header .logo-title {
    margin-left: 10px;
    color: #ddccbe;
    letter-spacing: 0em;
}

.header .logo-title h2 {
    font-size: 28px;
    font-weight: 400;
}

.header .logo-title p {
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
}

.header .logo-title p:nth-child(2) {
    font-size: 12px;
    transform: scale(0.7);
    transform-origin: 0px 0px;
}

/* 导航栏 */
.header .nav {
    flex: 1;
    height: 100%;
}

.header .list {
    display: flex;
    gap: 31px;
    height: 100%;
}

.header .list li {
    width: 135px;
    height: 100%;
    transition: 0.3s;
}

.header .list li:hover {
    background: rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.header .list li:hover h3 {
    color: rgba(185, 150, 119, 0.6);
    transition: 0.3s;
}

.header .list li:hover span {
    color: rgba(185, 150, 119, 0.3);
    transition: 0.3s;
}

.header .list .active {
    position: relative;
}

.header .list .active::after {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    content: "";
    background: #c9aa8e;
}

.header .list .active h3 {
    color: rgba(209, 176, 145, 0.9);
}

.header .list .active span {
    color: rgba(209, 176, 145, 0.6);
}

.header .list .active:hover h3 {
    color: rgba(209, 176, 145, 0.9);
}

.header .list .active:hover span {
    color: rgba(209, 176, 145, 0.6);
}

.header .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: normal;
    letter-spacing: 0em;
}

.header .list h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    transition: 0.3s;
}

.header .list span {
    display: inline-block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    transition: 0.3s;
}

/* 搜索框 */
.header .search-box {
    flex: 1;
}

.header .search-box input {
    width: 100%;
    height: 30px;
    color: #dbdbdb;
    font-size: 24px;
    background: transparent;
}

.header .search-box input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.header .search-box input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.header .search-box input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.header .search-box input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* 搜索栏 */
.header .search {
    width: 135px;
    height: 100%;
}

.header .search a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header .search img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.header .sidebar-btn {
    display: none;
}

.header .hot-line {
    display: none;
}

/* #endregion */

/* #region 轮播 */
.banners .banner .img {
    width: 100%;
    height: 100%;
}

/* 轮播分页 */
.banners .pagination {
    position: absolute;
    left: 50%;
    bottom: 100px;
    z-index: 10;
    display: flex;
    gap: 10px;
    margin: 0;
    transform: translateX(-50%);
    user-select: none;
}

.banners .pagination li {
    width: 40px;
    height: 5px;
    background: #593413;
    border-radius: 2.5px;
}

.banners .pagination .active {
    background: #fff8f2;
}

/* 数据列表 */
.banners .data-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 66px;
    height: 100px;
    margin: 0 auto;
    background: #4d2500;
}

.banners .data-list li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banners .data-list li:not(:last-child) {
    padding-right: 66px;
}

.banners .data-list li:not(:last-child)::after {
    position: absolute;
    right: -1px;
    height: 30px;
    content: "";
    border: 1px solid rgba(238, 238, 238, 0.2);
}

.banners .data-list .img {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.banners .data-list .title {
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0em;
}

.banners .data-list .title h4 {
    font-size: 30px;
    font-weight: 900;
}

.banners .data-list .title span {
    display: inline-block;
    margin-top: 6px;
}

/* #endregion */

/* #region 内容 */
.main {
    position: relative;
}

.module .title {
    text-align: center;
    font-weight: normal;
    letter-spacing: 0em;
}

.module .title .subject {
    position: relative;
    display: inline-block;
}

.module .title h2 {
    display: inline-block;
    margin-bottom: 38px;
    color: #333;
    font-size: 60px;
}

.module .title h2::after {
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 160px;
    transform: translateX(-50%);
    content: "";
    border: 1px solid #b99677;
    border-radius: 1px;
}

.module .title img {
    position: absolute;
    left: 0;
    top: 32px;
    z-index: -1;
    width: 478px;
    height: 56px;
}

.module .title p {
    margin-top: 38px;
    color: #666;
    font-size: 30px;
}

/* #region 定制 */
.custom {
    height: 586px;
}

.custom .fill {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 586px;
    background: url(/static/pc/image/custom.png) no-repeat;
    background-size: 100% 100%;
}

.custom .fill::before {
    position: absolute;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(77, 37, 0, 0.3) 0%, #4d2500 100%);
}

.custom .wrapper {
    box-sizing: border-box;
    display: flex;
    gap: 70px;
    height: 100%;
    padding: 100px 0;
}

.custom .title {
    text-align: left;
}

.custom .title>h2 {
    margin: 0;
    color: #fff;
}

.custom .title>h2::after {
    content: none;
}

.custom .title>p {
    margin-top: 36px;
    color: #fff;
}

.custom .content {
    flex: 1;
    font-weight: normal;
    letter-spacing: 0em;
}

.custom .align:not(:first-child) {
    margin-top: 30px;
}

.custom .align:first-child {
    display: flex;
    gap: 15px;
}

.custom .content input {
    box-sizing: border-box;
    flex: 1;
    height: 63px;
    padding: 14px;
    color: #4d2500;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.custom .content input::-webkit-input-placeholder {
    color: #4d2500;
}

.custom .content input::-moz-placeholder {
    color: #4d2500;
}

.custom .content input:-moz-placeholder {
    color: #4d2500;
}

.custom .content input:-ms-input-placeholder {
    color: #4d2500;
}

.custom .content textarea {
    box-sizing: border-box;
    width: 100%;
    height: 179px;
    padding: 14px;
    color: #4d2500;
    font-size: 24px;
    font-family: "Microsoft Yahei", "微软雅黑", "思源黑体", "Segoe UI",
        "Helvetica Neue", Helvetica, Arial, sans-serif, "PingFang SC", Tahoma;
    background: rgba(255, 255, 255, 0.9);
}

.custom .content textarea::-webkit-input-placeholder {
    color: #4d2500;
}

.custom .content textarea::-moz-placeholder {
    color: #4d2500;
}

.custom .content textarea:-moz-placeholder {
    color: #4d2500;
}

.custom .content textarea:-ms-input-placeholder {
    color: #4d2500;
}

.custom .content button {
    box-sizing: border-box;
    width: 100%;
    height: 87px;
    color: #ffffff;
    font-size: 40px;
    line-height: 87px;
    background: #b99677;
    transition: 0.3s;
    cursor: pointer;
}

.custom .content button:hover {
    background: #a9886c;
    transition: 0.3s;
}

.custom .content button:active {
    border: 2px solid #b99677;
    transition: 0.3s;
}

/* #endregion */

/* #region 每周快讯 */
.weekly-news .box {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 218px;
}

.weekly-news .img {
    width: 100%;
    height: 100%;
}

.weekly-news .img img {
    transition: 0.3s;
}

.weekly-news .box:hover img {
    transform: scale(1.2);
    transition: 0.3s;
}

.weekly-news .link {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 83px;
    padding: 16px;
    background: rgba(77, 37, 0, 0.9);
}

.weekly-news .link>a {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0em;
}

.weekly-news .list {
    margin-top: 16px;
}

.weekly-news .list>li {
    margin-top: 16px;
    padding-top: 16px;
    font-weight: normal;
    letter-spacing: 0em;
    border-top: 1px solid #cccccc;
}

.weekly-news .list li>p {
    overflow: hidden;
    color: #999999;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: 0.3s;
}

.weekly-news .list li:hover p {
    color: #666666;
    transition: 0.3s;
}

.weekly-news .more {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.weekly-news .more>span {
    color: #999999;
    font-size: 14px;
}

.weekly-news .list li:hover span:nth-child(2) {
    display: none;
}

.weekly-news .more>a {
    display: none;
    color: #b99677;
    font-size: 14px;
}

.weekly-news .list li:hover a {
    display: block;
}

/* #endregion */

/* #region 天韵服务 */
.tianyun-serve .list>li {
    position: relative;
    width: 100%;
}

.tianyun-serve .list .img {
    display: none;
    width: 100%;
    height: 187px;
}

.tianyun-serve .list .active .img {
    display: block;
}

.tianyun-serve .list>li:not(:first-child) {
    margin-top: 16px;
}

.tianyun-serve .list li>a {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: block;
    padding-left: 18px;
    color: #b99677;
    font-size: 22px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    letter-spacing: 0em;
}

.tianyun-serve .list li>a::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 6px;
    content: "";
    background: #b99677;
    border-radius: 50%;
}

.tianyun-serve .list .active a {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 41px 0;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}

.tianyun-serve .list .active a::before {
    content: none;
}

.tianyun-serve .list a>img {
    display: none;
    margin: 0 auto;
    margin-bottom: 30px;
}

.tianyun-serve .list .active a>img {
    display: block;
}

/* #endregion */

/* #region 面包屑 */
.breadcrumb-list {
    display: flex;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0em;
}

.breadcrumb-list li {
    max-width: 40%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb-list li:not(:last-child):after {
    content: "/";
    color: #999999;
}

.breadcrumb-list li>a {
    color: #999999;
    transition: 0.3s;
}

.breadcrumb-list li:hover>a {
    color: #333333;
    transition: 0.3s;
}

.breadcrumb-list .active a {
    color: #333333;
}

/* #endregion */

/* #region 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 41px;
    margin-top: 70px;
}

.pagination>a img {
    width: 9px;
    height: 16px;
    opacity: 0.5;
    transition: 0.3s;
}

.pagination>a:hover img {
    opacity: 1;
    transition: 0.3s;
}

.pagination>a:nth-child(1) img {
    transform: rotate(180deg);
}

.pagination .pagination-list {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0em;
}

.pagination .pagination-list li>a {
    color: #999999;
    transition: 0.3s;
}

.pagination .pagination-list .active a {
    position: relative;
    color: #593413;
}

.pagination .pagination-list .active a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    content: "";
    background: #593413;
}

.pagination .pagination-list li:hover a {
    color: #593413;
    transition: 0.3s;
}

.pagination .pagination-list li>span {
    user-select: none;
}

/* #endregion */

/* 联系 */
.contacts {
    display: none;
}

/* #endregion */

/* #region 底部 */
.footer {
    height: 506px;
    background: url(/static/pc/image/footer.png) no-repeat;
    background-size: 100% 100%;
}

.footer .about-info {
    box-sizing: border-box;
    position: relative;
    height: 443px;
    margin-top: 100px;
    background: rgba(89, 52, 19, 0.8);
}

.footer .about-info::before,
.footer .about-info::after {
    position: absolute;
    display: block;
    width: 513px;
    height: 100%;
    content: "";
}

.footer .about-info::before {
    left: 0;
    top: 0;
    background: rgba(77, 37, 0, 0.7);
}

.footer .about-info::after {
    left: 513px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 443px solid rgba(77, 37, 0, 0.7);
    border-right: 231px solid transparent;
}

.footer .about-info .content {
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    height: 100%;
}

.footer .left .img {
    width: 101px;
    height: 101px;
}

.footer .left .title {
    margin-top: 26px;
    color: #ddccbe;
    font-weight: normal;
    letter-spacing: 0em;
}

.footer .left .title h3 {
    font-size: 30px;
    font-weight: 250;
}

.footer .left .title p {
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
}

.footer .left .title p:nth-child(2) {
    font-size: 12px;
    transform: scale(0.7);
    transform-origin: 0 0;
}

.footer .left .hot-line {
    margin-top: 24px;
    color: #ffffff;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0em;
}

.footer .left .hot-line p:nth-child(2) {
    font-size: 32px;
    font-weight: bold;
}

.footer .left .hot-line p:nth-child(3) {
    color: #ddccbe;
    font-size: 12px;
}

.footer .right .about {
    display: flex;
    gap: 70px;
    margin-top: 114px;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0em;
}

.footer .about .links {
    display: flex;
    gap: 85px;
}

.footer .about .link:not(:last-child) {
    padding-right: 86px;
    border-right: 1px solid #ddccbe;
}

.footer .about .link h4>img {
    vertical-align: middle;
    margin-right: 6px;
}

.footer .about .link h4>span {
    vertical-align: middle;
}

.footer .about .link .list {
    margin-top: 23px;
}

.footer .about .link .list li {
    position: relative;
    padding-left: 10px;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0em;
}

.footer .about .link .list li:not(:first-child) {
    margin-top: 19px;
}

.footer .about .link .list li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    content: "";
    background: #ddccbe;
    border-radius: 50%;
}

.footer .about .link .list li>a {
    color: #ddccbe;
}

.footer .qr-code h4 {
    font-size: 22px;
}

.footer .qr-code img {
    width: 140px;
    height: 140px;
    margin-top: 16px;
}

.footer .blogroll {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-top: 33px;
    color: #ddccbe;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0em;
}

.footer .blogroll h4>img {
    vertical-align: middle;
}

.footer .blogroll h4>span {
    vertical-align: middle;
}

.footer .blogroll .list {
    display: flex;
    gap: 21px;
}

.footer .blogroll .list li>a {
    color: #ddccbe;
}

.footer .jump {
    display: none;
}

.footer .copy-right {
    height: 63px;
    background: #593413;
}

.footer .copy-right .content {
    box-sizing: border-box;
    padding: 20px 0;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0em;
}

/* #endregion */

/* 遮罩 */
.mask {
    display: none;
}

/* 侧边栏 */
.sidebar {
    display: none;
}
.copy-right a {
    color: white;
}
.mobile-title {
    display: none;
}
.swiper-slide img{
    object-fit: cover;
}

/* #region 适配 */
@media screen and (max-width: 768px) {

    /* #region 基本样式 */
    .wrapper {
        width: 100%;
    }
    .banners {
        padding-top: 2rem;
    }
    .mobile-title {
        display: block;
        position: absolute;
        left: 50%;
        top: .8rem;
        color: #FFF8F2;
        transform: translateX(-50%);
        font-size: .75rem;
    }
    /* #endregion */

    /* #region 头部 */
    .header {
        height: 2.625rem;
    }

    .header .wrapper {
        padding: 0 1rem;
    }

    .header .logo {
        width: auto;
    }

    .header .logo-img {
        width: 2.25rem;
        height: 2.25rem;
    }

    .header .logo-title {
        display: none;
    }

    .header .nav {
        display: none;
    }

    .header .sidebar-btn {
        display: block;
        width: 1rem;
        height: 1rem;
    }

    .header .sidebar-btn a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .header .sidebar-btn img {
        width: 100%;
        height: 100%;
    }

    .header .search-box {
        padding: 0 1rem;
    }

    .header .search-box input {
        box-sizing: border-box;
        height: 2.15rem;
        font-size: 0.75rem;
        padding: 0.625rem;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 1.125rem;
    }

    .header .search {
        position: absolute;
        left: 80%;
        transform: translateX(-50%);
        z-index: 1;
        width: 1rem;
        height: 1rem;
    }

    .header .search img {
        width: 100%;
        height: 100%;
    }

    .header .hot-line {
        display: block;
        width: 22%;
        color: #fff;
        font-size: 0.75rem;
        font-weight: normal;
        letter-spacing: 0em;
        white-space: nowrap;
    }

    .header .hot-line h3 {
        line-height: 0.625rem;
        transform: scale(0.6);
        transform-origin: 0 50%;
    }

    .header .hot-line p:nth-child(2) {
        font-size: 0.75rem;
        font-weight: bold;
        line-height: 0.625rem;
        transform: scale(0.7);
        transform-origin: 0 50%;
    }

    .header .hot-line p:nth-child(3) {
        color: #ddccbe;
        font-size: 0.75rem;
        line-height: 0.5rem;
        transform: scale(0.4);
        transform-origin: 0 50%;
    }

    /* #endregion */

    /* #region 轮播 */
    .banners .pagination {
        bottom: 12px;
        gap: 0.25rem;
        padding: 0;
        background: none;
        border-radius: 0;
        backdrop-filter: none;
    }

    .banners .pagination li {
        width: 0.25rem;
        height: 0.25rem;
        background: #cccccc;
        border-radius: 50%;
    }

    .banners .pagination .active {
        background: #ffffff;
    }

    /* 数据列表 */
    .banners .data-list {
        height: 1.785rem;
        gap: 0.75rem;
    }

    .banners .data-list li:not(:last-child) {
        padding-right: 0.75rem;
    }

    .banners .data-list li:not(:last-child)::after {
        height: 0.5rem;
        border: 1px solid #ffffff;
        opacity: 0.8;
    }

    .banners .data-list .img {
        width: 0.9375rem;
        height: 0.9375rem;
    }

    .banners .data-list .title {
        width: 1.785rem;
        margin-left: 0.25rem;
        font-size: 0.75rem;
    }

    .banners .data-list .title h4 {
        font-size: 0.75rem;
        line-height: 0.625rem;
        transform: scale(0.66);
        transform-origin: 0 180%;
    }

    .banners .data-list .title span {
        margin: 0;
        line-height: 0.625rem;
        white-space: nowrap;
        transform: scale(0.45);
        transform-origin: 0;
    }

    /* #endregion */

    /* #region 内容 */
    .module .title h2 {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .module .title h2::after {
        width: 2.5rem;
        height: 0.0625rem;
        background: #b99677;
        border: 0;
    }

    .module .title img {
        top: 0.5rem;
        width: 6.85rem;
        height: 0.875rem;
    }

    .module .title p {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        transform: scale(0.8);
    }

    /* #region 定制 */
    .custom {
        position: relative;
        height: 23.6rem;
    }

    .custom .fill {
        height: 100%;
    }

    .custom .wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.6rem;
    }

    .custom .title h2 {
        margin-bottom: 0.25rem;
        font-size: 1.45rem;
    }

    .custom .title p {
        margin-top: 0px;
        transform-origin: 0 0;
    }

    .custom .align:not(:first-child) {
        margin-top: 1rem;
    }

    .custom .align:first-child {
        flex-direction: column;
    }

    .custom .content input {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .custom .content textarea {
        height: 5rem;
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .custom .content button {
        height: 1.785rem;
        font-size: 0.875rem;
        line-height: 1.785rem;
    }

    /* #endregion */

    /* #region 联系 */
    .contacts {
        box-sizing: border-box;
        position: fixed;
        left: 50%;
        bottom: 70px;
        transform: translateX(-50%);
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 19.575rem;
        height: 3.6rem;
        padding: 1rem;
        background: #b99677;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
    }

    .contacts .contact,
    .contacts .concern {
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .contacts .contact>img,
    .contacts .concern>img {
        width: 1.74rem;
        height: 1.74rem;
    }

    .contacts .text {
        color: #fff8f2;
        font-size: 0.75rem;
        font-weight: normal;
        letter-spacing: 0em;
        white-space: nowrap;
    }

    .contacts .text>span {
        display: inline-block;
        line-height: 8px;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    .contacts>img {
        position: absolute;
        right: 0;
        top: 0;
        transform: translate(50%, -50%);
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 50%;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    }

    .contacts-close {
        left: auto;
        right: 16px;
        transform: none;
        justify-content: center;
        width: 2.4rem;
        height: 2.4rem;
        padding: 0;
        border-radius: 50%;
        transition: 0.3s;
    }

    .contacts-bottom {
        position: absolute;
        bottom: 0;
    }

    .contacts-close .contact>img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .contacts-close .text {
        display: none;
    }

    .contacts-close .concern {
        display: none;
    }

    .contacts-close>img {
        display: none;
    }

    /* #endregion */

    /* #region 面包屑 */
    .breadcrumb-list {
        font-size: 0.625rem;
    }

    /* #endregion */

    /* #region 分页 */
    .pagination {
        gap: 2.1rem;
        margin-top: 1rem;
    }

    .pagination>a img {
        width: 0.375rem;
        height: 0.75rem;
    }

    .pagination .pagination-list {
        gap: 1rem;
        font-size: 1rem;
    }

    /* #endregion */

    /* #endregion */

    /* #region 底部 */
    .footer {
        height: auto;
    }

    .footer .about-info {
        overflow: hidden;
        height: auto;
        margin-top: 1rem;
        padding: 1.25rem 1rem;
        background: #593413;
    }

    .footer .about-info::before,
    .footer .about-info::after {
        display: none;
    }

    .footer .about-info .content {
        padding: 0;
        flex-direction: column;
    }

    .footer .left {
        display: flex;
    }

    .footer .left .img {
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 0.25rem;
    }

    .footer .left .title {
        width: 50%;
        margin-top: 0;
    }

    .footer .left .title h3 {
        font-size: 1rem;
    }

    .footer .left .title p {
        font-size: 0.75rem;
        line-height: 0.625rem;
        white-space: nowrap;
        transform: scale(0.8);
        transform-origin: 0 0;
    }

    .footer .left .title p:nth-child(2) {
        transform: scale(0.5);
    }

    .footer .left .hot-line {
        margin-top: 0px;
        font-size: 0.75rem;
        font-weight: normal;
        letter-spacing: 0em;
    }

    .footer .left .hot-line p:nth-child(2) {
        font-size: 1rem;
        font-weight: bold;
        white-space: nowrap;
    }

    .footer .left .hot-line p:nth-child(3) {
        font-size: 0.75rem;
        white-space: nowrap;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    .footer .right .about,
    .footer .right .blogroll {
        display: none;
    }

    .footer .right .jump {
        display: block;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin-top: 0.5rem;
        color: #ffffff;
        font-size: 12px;
    }

    .footer .right .jump>img {
        flex-shrink: 0;
    }

    .footer .right .jump>a {
        position: relative;
        display: block;
        color: #ffffff;
        white-space: nowrap;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    .footer .right .jump>a::after {
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 0.0625rem;
        content: "";
        background: #ffffff;
    }

    .footer .right .jump>span {
        transform: scale(0.5);
        transform-origin: -80% 40%;
    }

    .footer .copy-right {
        display: none;
    }

    /* #endregion */

    /* #region 遮罩 */
    .mask {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }

    /* #endregion */

    /* #region 侧边栏 */
    .sidebar {
        box-sizing: border-box;
        overflow: hidden;
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 9999;
        display: block;
        width: 60%;
        height: 100vh;
        padding: 1rem;
        color: #333;
        font-size: 0.75rem;
        background: #fff8f2;
        transition: 0.3s;
    }

    .sidebar-expand {
        right: 0;
        transition: 0.3s;
    }

    /* Logo */
    .sidebar .logo {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .sidebar .logo-img {
        flex-shrink: 0;
        width: 2.46rem;
        height: 2.46rem;
    }

    .sidebar .logo-img img {
        width: 100%;
        height: 100%;
    }

    .sidebar .logo-title {
        flex: 1;
        margin-left: 0.25rem;
        color: #593413;
        letter-spacing: 0em;
    }

    .sidebar .logo-title h2 {
        font-size: 1rem;
        font-weight: 250;
    }

    .sidebar .logo-title p {
        font-size: 0.75rem;
        line-height: 0.625rem;
        font-weight: normal;
        white-space: nowrap;
        transform: scale(0.8);
        transform-origin: 0 -300%;
    }

    .sidebar .logo-title p:nth-child(2) {
        line-height: 0.75rem;
        transform: scale(0.5);
        transform-origin: 0 0;
    }

    .sidebar .link-list {
        width: 100%;
        margin-top: 1rem;
    }

    .sidebar .link-list li:not(:first-child) {
        margin-top: 1.56rem;
    }

    .sidebar .link-list .active {
        position: relative;
    }

    .sidebar .link-list .active::after {
        position: absolute;
        bottom: -4px;
        width: 100%;
        height: 0.0625rem;
        content: "";
        background: #593413;
    }

    .sidebar .link-list li>a {
        position: relative;
        display: block;
        font-weight: normal;
        letter-spacing: 0em;
    }

    .sidebar .link-list li h3 {
        display: inline-block;
        color: rgba(51, 51, 51, 0.6);
        font-size: 0.875rem;
    }

    .sidebar .link-list .active h3 {
        color: rgba(89, 52, 19, 0.9);
    }

    .sidebar .link-list li span {
        display: inline-block;
        color: rgba(102, 102, 102, 0.3);
        font-size: 0.75rem;
        transform: scale(0.8);
        transform-origin: 0 150%;
    }

    .sidebar .link-list .active span {
        color: rgba(89, 52, 19, 0.6);
    }

    .sidebar .link-list li img {
        position: absolute;
        display: none;
        right: 0;
        bottom: 0;
        width: 1.5rem;
        height: 0.75rem;
    }

    .sidebar .link-list .active img {
        display: block;
    }

    /* 关闭 */
    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 16px;
        width: 1rem;
        height: 1rem;
    }

    /* #endregion */
}

/* #endregion */