@charset "UTF-8";
@keyframes enlarge {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(0.9);
    }
}

@keyframes upDown {
    0% {
        transform: translateY(6px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(6px);
    }
}

@keyframes down {
    0% {
        transform: translateY(-159px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-159px);
    }
}

@keyframes enlarge2 {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.head {
    width: 100%;
    height: 122px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 4.79vw 0 4.22vw;
}

.head .menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: 6.93vw;
}

.head .menu-list li {
    margin-right: 2.4vw;
    line-height: 16px;
}

.head .menu-list li a {
    font-size: 18px;
    padding-right: 1.09vw;
    display: block;
    color: #fff;
}

.head .menu-list li.active {
    background: url("../images/circle.png") no-repeat right bottom;
    background-size: 25px auto;
}

.head .cn-link {
    width: 38px;
    height: 38px;
    display: block;
    background: #c02e2f;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 38px;
}

.mouse {
    width: 56px;
    height: 56px;
    left: 50%;
    margin-left: -28px;
    bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: enlarge 1.2s linear infinite;
}

.mouse .out-circle,
.mouse .inner-circle {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #acacac;
    opacity: 0.69;
}

.mouse .out-circle {
    top: 0;
    right: 0;
}

.mouse .inner-circle {
    bottom: 0;
    left: 0;
}

.foot-box {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.foot-box .foot-menu {
    width: 100%;
    height: 122px;
    background: url("../images/foot-bg1.png");
    display: flex;
    align-items: center;
}

.foot-box .foot-menu .qr-code {
    width: 88px;
    margin: 0 16.56vw 0 104px;
}

.foot-box .foot-menu .menu-list {
    display: flex;
    align-items: center;
}

.foot-box .foot-menu .menu-list li {
    margin-right: 70px;
}

.foot-box .foot-menu .menu-list li a {
    font-size: 18px;
    color: #282828;
}

.foot-box p {
    font-size: 14px;
    line-height: 108px;
    color: #817d81;
    text-align: center;
    background: url("../images/foot-bg2.png");
    background-size: cover;
}

.foot-box p span {
    color: #ededed;
}

a.more {
    font-size: 16px;
    line-height: 36px;
    padding-right: 36px;
    background: url("../images/circle.png") no-repeat right center;
    display: inline-block;
    font-weight: bold;
}

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

.home .top-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

.home .top-box .banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.home .top-box .banner .swiper-slide {
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 22%;
}

.home .top-box .banner .swiper-slide img {
    width: 776px;
    display: block;
    transition: all 2s ease;
    transform: scale(1.2);
    opacity: 0;
    margin: 8% 0 0;
}

.home .top-box .banner .swiper-slide.swiper-slide-active img {
    transform: scale(1);
    opacity: 1;
}

.home .top-box .banner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(172, 172, 172, 0.24);
    position: absolute;
    top: 0;
    right: 12vw;
    z-index: 2;
}

.home .top-box .navigation {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14px;
}

.home .top-box .navigation p {
    font-size: 14px;
    line-height: 14px;
    color: #c9c8c9;
    position: relative;
    bottom: 0;
    z-index: 2;
}

.home .top-box .navigation p span {
    color: #fff;
}

.home .top-box .navigation .banner-prev,
.home .top-box .navigation .banner-next {
    width: 5px;
    height: 12px;
    color: #fff;
    opacity: 1;
    margin: 0;
    top: 1px;
}

.home .top-box .navigation .banner-prev::after,
.home .top-box .navigation .banner-next::after {
    font-size: 12px;
}

.home .top-box .navigation .banner-prev {
    left: 3.18vw;
}

.home .top-box .navigation .banner-next {
    right: 3.18vw;
}

.home .top-box .mouse {
    position: absolute;
    z-index: 2;
}

.home .container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home .container::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 14.27vw;
    background: rgba(157, 157, 157, 0.17);
    z-index: 2;
}

.home .container .column1 {
    width: 100%;
    background: #fff url("../images/index/column-bg1.png") no-repeat left bottom;
    background-size: 17.34vw auto;
    display: flex;
    box-sizing: border-box;
    padding: 0 0 80px;
    position: relative;
}

.home .container .column1 .column-left {
    box-sizing: border-box;
    padding-top: 450px;
}

.home .container .column1 .column-left .column-title {
    margin-top: 10px;
}

.home .container .column1 .column-right {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: calc(100% - 14.27vw);
}

.home .container .column1 .column-right .timeline-box {
    width: 100%;
    box-sizing: border-box;
    height: 360px;
    padding: 48px 82px 0;
    background: #f3f3f3;
    margin-bottom: 88px;
    color: #000;
}

.home .container .column1 .column-right .timeline-box .time-line {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(131, 131, 131, 0.17);
    display: flex;
    margin-bottom: 50px;
}

.home .container .column1 .column-right .timeline-box .time-line li {
    margin-right: 250px;
    position: relative;
}

.home .container .column1 .column-right .timeline-box .time-line li::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    bottom: -24px;
    left: 0;
}

.home .container .column1 .column-right .timeline-box .time-line .time {
    font-size: 24px;
    font-weight: bold;
    line-height: 55px;
}

.home .container .column1 .column-right .timeline-box .time-line .event {
    font-size: 16px;
}

.home .container .column1 .column-right .timeline-box .about-item {
    font-size: 18px;
    line-height: 38px;
}

.home .container .column1 .column-right .timeline-box .about-item span {
    font-size: 16px;
}

.home .container .column1 .column-right .img-box {
    width: 34.79vw;
    min-width: 520px;
    height: 45.05vw;
    min-height: 676px;
    border: 8px solid #f6f6f6;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.home .container .column1 .column-right .img-box img {
    width: 100%;
}

.home .container .column1 .column-right .column-text {
    width: 38vw;
    margin: 2.84vw 0 0 5.63vw;
    color: #0f0f0f;
    position: relative;
}

.home .container .column1 .column-right .column-text h1 {
    font-size: 36px;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 3.2vw;
}

.home .container .column1 .column-right .column-text p {
    font-size: 16px;
    line-height: 36px;
}

.home .container .column1 .column-right .column-text .more {
    margin: 3.3vw 0 2vw;
}

.home .container .column1 .column-right .column-text .img-group {
    width: 100%;
    height: 22.4vw;
    display: flex;
    justify-content: space-between;
}

.home .container .column1 .column-right .column-text .img-group .img-item {
    width: 14.84vw;
    height: 22.4vw;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.home .container .column1 .column-right .column-text .img-group .img-item img {
    max-width: 100%;
}

.home .container .column2 {
    width: 100%;
    background: #f3f3f3 url("../images/index/column-bg2.png") no-repeat right bottom;
    background-size: 100% auto;
    box-sizing: border-box;
    padding: 130px 0 110px;
    display: flex;
    position: relative;
}

.home .container .column2 .swiper-box {
    position: relative;
}

.home .container .column2 .swiper-box .artwork-swiper {
    width: 55.52vw;
    height: 37.29vw;
    min-width: 920px;
    min-height: 586px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    box-sizing: border-box;
    position: relative;
}

.home .container .column2 .swiper-box .artwork-swiper::after {
    content: "";
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 6px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.home .container .column2 .swiper-box .artwork-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.home .container .column2 .swiper-box .artwork-swiper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.home .container .column2 .swiper-box .thumb-swiper {
    width: 234px;
    height: 422px;
    position: absolute;
    right: -164px;
    top: 50%;
    z-index: 3;
    margin-top: -160px;
}

.home .container .column2 .swiper-box .thumb-swiper .swiper-slide {
    border: 4px solid #fff;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.home .container .column2 .swiper-box .thumb-swiper .swiper-slide.swiper-slide-thumb-active {
    border-color: #b70004;
}

.home .container .column2 .swiper-content {
    width: 846px;
    margin-left: 48px;
    margin-top: 40px;
    color: #0f0f0f;
}

.home .container .column2 .swiper-content .swiper-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 16px;
    color: #344148;
}

.home .container .column2 .swiper-content .swiper-text {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 24px;
    height: 144px;
}

.home .container .column3 {
    width: 100%;
    background: url("../images/index/column-bg3.png");
    background-size: cover;
    display: flex;
    position: relative;
}

.home .container .column3 .column-left {
    box-sizing: border-box;
    padding-top: 178px;
}

.home .container .column3 .column-left .back-top {
    color: #fff;
}

.home .container .column3 .column-right {
    width: calc(100% - 14.27vw);
    position: relative;
    margin: 0;
    padding-bottom: 120px;
}

.home .container .column3 .column-right .bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.22;
}

.home .container .column3 .column-right .navigation-column {
    width: calc(100% - 318px);
    height: 35px;
    display: flex;
    align-items: center;
    margin-top: 150px;
}

.home .container .column3 .column-right .navigation-column .navigation-line {
    width: calc(100% - 98px);
    height: 1px;
    display: block;
    background: rgba(172, 172, 172, 0.27);
}

.home .container .column3 .column-right .navigation-column .button-group {
    width: 98px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 14px;
    justify-content: space-between;
}

.home .container .column3 .column-right .navigation-column .button-group .swiper-button-prev,
.home .container .column3 .column-right .navigation-column .button-group .swiper-button-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #a90b0b;
    opacity: 1;
    margin: 0;
    position: static;
}

.home .container .column3 .column-right .navigation-column .button-group .swiper-button-prev::after,
.home .container .column3 .column-right .navigation-column .button-group .swiper-button-next::after {
    font-size: 16px;
    color: #fff;
}

.home .container .column3 .column-right .navigation-column .button-group .swiper-button-next {
    background: #282828;
}

.home .container .column3 .column-right .collection-swiper {
    width: calc(100% - 64px);
    margin: 138px 0 0 64px;
    overflow: hidden;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide {
    width: 28.91vw;
    margin-right: 1.93vw;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide .slide-img {
    width: 28.91vw;
    height: 22.34vw;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 2px;
    border: 1px solid #fff;
    position: relative;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide .slide-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    box-sizing: border-box;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide .slide-img img {
    width: 100%;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide .slide-info {
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    width: 24vw;
    margin: 46px 0 28px;
    padding-left: 14px;
    font-weight: lighter;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide .more {
    font-size: 16px;
    color: #fff;
    font-weight: lighter;
    padding-left: 14px;
}

.home .container .column3 .column-right .collection-swiper .swiper-slide.active .slide-img {
    border-color: #db0000;
}

.home .container .column-left {
    width: 14.27vw;
    height: 100%;
}

.home .container .column-left .column-title {
    width: 100%;
    text-align: center;
}

.home .container .column-left .decline {
    text-align: center;
    position: absolute;
    left: 5.52vw;
    bottom: 40px;
    font-size: 14px;
    line-height: 36px;
    font-weight: bold;
    cursor: pointer;
    display: block;
}

.home .container .column-left .decline img {
    margin-top: 7px;
    width: 8px;
    animation: upDown 0.8s linear infinite;
}

.home .container .column-right {
    margin-left: -1px;
}

.home .container .line {
    width: 1px;
    height: 194px;
    background: #dedede;
    position: absolute;
    right: 80px;
    bottom: 100px;
}

.home .container .line i {
    display: block;
    width: 1px;
    height: 35px;
    background: #ca0000;
    position: absolute;
    top: 159px;
    left: 0;
    animation: down 2.5s linear infinite;
}

.overview {
    width: 100%;
    height: 100%;
    background: #fff url("../images/overview/bg.png") no-repeat left bottom;
    overflow: hidden;
}

.overview .container-box {
    width: 100%;
    height: 100%;
}

.overview .left-container {
    width: calc(100% - 35.68vw);
    height: 100%;
    position: relative;
    float: left;
}

.overview .left-container .text-box {
    width: 678px;
    height: 36vw;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
    overflow-y: auto;
    text-align: left;
    color: #0f0f0f;
    padding-right: 20px;
    /*修改滚动条样式*/
}

.overview .left-container .text-box h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 40px;
}

.overview .left-container .text-box p {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 22px;
}

.overview .left-container .text-box::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.overview .left-container .text-box::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.overview .left-container .text-box::-webkit-scrollbar-thumb {
    background: #b4141a;
    border-radius: 5px;
}

.overview .right-container {
    width: 35.68vw;
    height: 100%;
    float: right;
    background: url("../images/overview/bg-img.png") no-repeat left center;
    background-size: cover;
    border-left: 1px solid #dadada;
    box-sizing: border-box;
}

.overview .right-container .close {
    width: 29px;
    display: block;
    margin-top: 54px;
    margin-right: 76px;
    float: right;
}

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

.exhibition .top-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

.exhibition .top-box .banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition .top-box .banner img {
    width: 82px;
    display: block;
    animation: enlarge2 1.6s ease-in-out 0s;
}

.exhibition .top-box .banner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(172, 172, 172, 0.24);
    position: absolute;
    top: 0;
    right: 12vw;
    z-index: 2;
}

.exhibition .top-box .mouse {
    position: absolute;
    z-index: 2;
}

.exhibition .container {
    width: 100%;
    background: #f3f3f3 url("../images/index/column-bg2.png") no-repeat right bottom;
    padding-top: 88px;
}

.exhibition .container .exhibition-list {
    width: calc(83.34vw + 46px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    border-bottom: 1px solid rgba(166, 166, 166, 0.14);
}

.exhibition .container .exhibition-list li {
    width: 41.67vw;
    margin-bottom: 64px;
}

.exhibition .container .exhibition-list li .item-img {
    width: 100%;
    height: 31.25vw;
    box-sizing: border-box;
    position: relative;
    border: 1px solid rgba(217, 199, 191, 0.39);
    overflow: hidden;
}

.exhibition .container .exhibition-list li .item-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.exhibition .container .exhibition-list li .item-img img {
    width: 100%;
}

.exhibition .container .exhibition-list li .item-text {
    width: 34vw;
    margin-top: 38px;
    margin-left: 16px;
}

.exhibition .container .exhibition-list li .item-text h3 {
    font-size: 30px;
    line-height: 36px;
    color: #344148;
    font-weight: bold;
    margin-bottom: 14px;
}

.exhibition .container .exhibition-list li .item-text p {
    font-size: 16px;
    line-height: 30px;
    color: #757575;
}

.exhibition .container .exhibition-list li .item-text .more {
    font-size: 16px;
    color: #0b0b0b;
    margin-top: 20px;
}

.exhibition .container .page-list {
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 44px 0 0;
    padding-bottom: 80px;
}

.exhibition .container .page-list li {
    width: 30px;
    height: 28px;
    border-radius: 6px;
    background-color: #f4f4f5;
    margin: 0 5px;
}

.exhibition .container .page-list li.active {
    background-color: #b4141a;
}

.exhibition .container .page-list li.active a {
    color: #fff;
}

.exhibition .container .page-list li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    color: #282828;
}

.exhibition-detail {
    width: 100%;
    height: 100%;
    background: url("../images/index/column-bg3.png");
    position: relative;
    box-sizing: border-box;
    padding-left: 24.69vw;
    overflow: hidden;
}

.exhibition-detail .banner-bg {
    width: calc(100% - 24.69vw);
    height: 100%;
    opacity: 0.22;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.exhibition-detail .up-box {
    position: relative;
    z-index: 1;
}

.exhibition-detail .back {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    margin: 48px 0 0;
    box-sizing: border-box;
    padding: 0 72px 0 48px;
}

.exhibition-detail .back .return {
    margin-right: auto;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
}

.exhibition-detail .back .return span {
    margin-right: 8px;
}

.exhibition-detail .back .return img {
    width: 17px;
}

.exhibition-detail .back .close img {
    width: 19px;
}

.exhibition-detail .navigation-column {
    width: calc(100% - 118px);
    height: 35px;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.exhibition-detail .navigation-column .navigation-line {
    width: calc(100% - 98px);
    height: 1px;
    display: block;
    background: rgba(172, 172, 172, 0.27);
}

.exhibition-detail .navigation-column .button-group {
    width: 98px;
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 14px;
    justify-content: space-between;
}

.exhibition-detail .navigation-column .button-group a {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #a90b0b;
}

.exhibition-detail .navigation-column .button-group a.disabled {
    background: #282828;
}

.exhibition-detail .navigation-column .button-group a img {
    width: 35px;
}

.exhibition-detail .exhibition-info {
    width: calc(80.26vw + 60px);
    height: calc(100vh - 254px);
    margin-left: -16.72vw;
    margin-top: 50px;
    box-sizing: border-box;
    padding-bottom: 68px;
}

.exhibition-detail .exhibition-info .info-img {
    width: 56%;
    height: 100%;
    border: 1px solid rgba(217, 199, 191, 0.39);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    float: left;
}

.exhibition-detail .exhibition-info .info-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 3px solid #424b51;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.exhibition-detail .exhibition-info .info-img img {
    width: 120%;
}

.exhibition-detail .exhibition-info .info-text {
    width: 39.4%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    float: right;
    padding-right: 14px;
    box-sizing: border-box;
    /*修改滚动条样式*/
}

.exhibition-detail .exhibition-info .info-text h1 {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 54px;
    font-weight: bold;
}

.exhibition-detail .exhibition-info .info-text p {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    margin-bottom: 24px;
}

.exhibition-detail .exhibition-info .info-text::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.exhibition-detail .exhibition-info .info-text::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.exhibition-detail .exhibition-info .info-text::-webkit-scrollbar-thumb {
    background: #282828;
    border-radius: 5px;
}

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

.collection .top-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

.collection .top-box .banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection .top-box .banner img {
    width: 82px;
    display: block;
    animation: enlarge2 1.6s ease-in-out 0s;
}

.collection .top-box .banner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(172, 172, 172, 0.24);
    position: absolute;
    top: 0;
    right: 12vw;
    z-index: 2;
}

.collection .top-box .mouse {
    position: absolute;
    z-index: 2;
}

.collection .container {
    width: 100%;
    background: #f3f3f3 url("../images/index/column-bg2.png") no-repeat right bottom;
    padding-top: 88px;
}

.collection .container .exhibition-list {
    width: calc(83.13vw + 48px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    border-bottom: 1px solid rgba(166, 166, 166, 0.14);
}

.collection .container .exhibition-list li {
    width: 27.71vw;
    margin-bottom: 58px;
}

.collection .container .exhibition-list li .item-img {
    width: 100%;
    height: 21.46vw;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #dadada;
    border-radius: 2px;
    overflow: hidden;
}

.collection .container .exhibition-list li .item-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.collection .container .exhibition-list li .item-img img {
    width: 100%;
}

.collection .container .exhibition-list li .item-text {
    width: 24vw;
    margin-top: 28px;
    margin-left: 4px;
}

.collection .container .exhibition-list li .item-text p {
    font-size: 24px;
    line-height: 36px;
    color: #090909;
}

.collection .container .exhibition-list li .item-text .more {
    font-size: 16px;
    color: #0b0b0b;
    margin-top: 10px;
}



.collection .container .exhibition-list-x {
    width: calc(83.13vw + 48px);
    
    margin: 0 auto;
    border-bottom: 1px solid rgba(166, 166, 166, 0.14);
}
.collection .container .exhibition-list-x .wow{
    float:left;
    margin-right: 20px;
}

.collection .container .exhibition-list-x li {
    width: 27.71vw;
    margin-bottom: 58px;
}

.collection .container .exhibition-list-x li .item-img {
    width: 100%;
    height: 21.46vw;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #dadada;
    border-radius: 2px;
    overflow: hidden;
}

.collection .container .exhibition-list-x li .item-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.collection .container .exhibition-list-x li .item-img img {
    width: 100%;
}

.collection .container .exhibition-list-x li .item-text {
    width: 24vw;
    margin-top: 28px;
    margin-left: 4px;
}

.collection .container .exhibition-list-x li .item-text p {
    font-size: 24px;
    line-height: 36px;
    color: #090909;
}

.collection .container .exhibition-list-x li .item-text .more {
    font-size: 16px;
    color: #0b0b0b;
    margin-top: 10px;
}





.collection .container .page-list {
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 44px 0 0;
    padding-bottom: 80px;
}

.collection .container .page-list li {
    width: 30px;
    height: 28px;
    border-radius: 6px;
    background-color: #f4f4f5;
    margin: 0 5px;
}

.collection .container .page-list li.active {
    background-color: #b4141a;
}

.collection .container .page-list li.active a {
    color: #fff;
}

.collection .container .page-list li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 28px;
    font-size: 14px;
    color: #282828;
}

.collection-detail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.collection-detail .swiper-box {
    width: 64.84vw;
    height: 100%;
    position: relative;
    float: left;
    transition: all 1.8s;
}

.collection-detail .swiper-box .artwork-swiper {
    width: 100%;
    height: 100%;
}

.collection-detail .swiper-box .artwork-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.collection-detail .swiper-box .artwork-swiper .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    background-color: #060608;
    background-size: cover;
    background-position: center;
}

.collection-detail .swiper-box .thumb-box {
    position: absolute;
    width: 702px;
    height: 90px;
    bottom: 50px;
    right: 72px;
}

.collection-detail .swiper-box .thumb-box .thumb-swiper {
    width: 584px;
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 60px;
}

.collection-detail .swiper-box .thumb-box .thumb-swiper .swiper-slide {
    width: 134px !important;
    height: 100%;
    border: 1px solid #dadada;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

.collection-detail .swiper-box .thumb-box .thumb-swiper .swiper-slide::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #a6a6a6;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.collection-detail .swiper-box .thumb-box .thumb-swiper .swiper-slide.active {
    border-color: #b4141a;
}

.collection-detail .swiper-box .thumb-box .swiper-button-prev,
.collection-detail .swiper-box .thumb-box .swiper-button-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #a90b0b;
    opacity: 1;
    margin-top: -18px;
}

.collection-detail .swiper-box .thumb-box .swiper-button-prev::after,
.collection-detail .swiper-box .thumb-box .swiper-button-next::after {
    font-size: 16px;
    color: #fff;
}

.collection-detail .swiper-box .thumb-box .swiper-button-prev {
    left: 0;
}

.collection-detail .swiper-box .thumb-box .swiper-button-next {
    right: 0;
}

.collection-detail .swiper-box .thumb-box .swiper-button-disabled {
    background: #282828;
}

.collection-detail .swiper-box .full-screen {
    position: absolute;
    top: 60px;
    right: 62px;
    width: 116px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
    z-index: 2;
    cursor: pointer;
}

.collection-detail .full-screen-swiper {
    width: 100vw;
}

.collection-detail .full-screen-swiper .artwork-swiper .swiper-slide .slide-img {
    background-size: unset;
    background-repeat: no-repeat;
}

.collection-detail .collection-info {
    width: 35.16vw;
    height: 100%;
    float: right;
}

.collection-detail .collection-info .back {
    width: 85%;
    height: 20px;
    display: flex;
    align-items: center;
    margin: 48px 0 0 8%;
}

.collection-detail .collection-info .back .return {
    margin-right: auto;
    font-size: 14px;
    color: #121111;
    display: flex;
    align-items: center;
}

.collection-detail .collection-info .back .return span {
    margin-right: 8px;
}

.collection-detail .collection-info .back .return img {
    width: 17px;
}

.collection-detail .collection-info .back .close img {
    width: 19px;
}

.collection-detail .collection-info h1 {
    width: 77.5%;
    font-size: 30px;
    font-weight: bold;
    color: #060606;
    line-height: 36px;
    margin: 100px 0 28px 8%;
}

.collection-detail .collection-info p {
    width: 77.5%;
    font-size: 14px;
    line-height: 26px;
    color: #000;
    margin-left: 8%;
}

.collection-detail .collection-info .line-black {
    width: 40px;
    height: 2px;
    background: #000;
    margin: 10px 0 40px 8%;
}

.collection-detail .collection-info .info-text {
    width: 84%;
    height: 400px;
    overflow: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    margin-left: 8%;
    /*修改滚动条样式*/
}

.collection-detail .collection-info .info-text p {
    margin-bottom: 16px;
    margin-left: 0;
}

.collection-detail .collection-info .info-text::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

.collection-detail .collection-info .info-text::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.collection-detail .collection-info .info-text::-webkit-scrollbar-thumb {
    background: #b4141a;
    border-radius: 5px;
}

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

.service .top-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
}

.service .top-box .banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .top-box .banner img {
    width: 82px;
    display: block;
    animation: enlarge2 1.6s ease-in-out 0s;
}

.service .top-box .banner::after {
    content: "";
    width: 1px;
    height: 100%;
    background: rgba(172, 172, 172, 0.24);
    position: absolute;
    top: 0;
    right: 12vw;
    z-index: 2;
}

.service .top-box .mouse {
    position: absolute;
    z-index: 2;
}

.service .container {
    width: 100%;
    background: #f3f3f3;
    overflow: hidden;
}

.service .container .service-box {
    width: 93.7vw;
    border: 1px solid #d9c7bf;
    border-radius: 2px;
    box-sizing: border-box;
    margin: 88px auto 40px;
    background: url("../images/foot-bg1.png");
    position: relative;
    overflow: hidden;
}

.service .container .service-box .service-bg1 {
    width: 191px;
    height: 291px;
    background: url("../images/service/bg-img1.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: 200px;
    left: 50px;
}

.service .container .service-box .service-bg2 {
    width: 20%;
    height: 470px;
    background: url("../images/service/bg-img2.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: 474px;
    left: calc(20% - 1px);
}

.service .container .service-box .content-group {
    width: 100%;
    display: flex;
    position: relative;
    z-index: 2;
}

.service .container .service-box .content-group li {
    width: 20%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid #d9d9d9;
}

.service .container .service-box .content-group li .content-info {
    width: 79.44%;
    height: 100%;
    min-width: 200px;
    margin: 0 auto;
    overflow: hidden;
}

.service .container .service-box .content-group li .content-info .number {
    width: 100%;
    font-size: 48px;
    line-height: 48px;
    color: #797575;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 3.85vw;
}

.service .container .service-box .content-group li .content-info p {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #797575;
}

.service .container .service-box .content-group li .content-info p.item-title {
    font-size: 18px;
    color: #000000;
    line-height: 36px;
    margin-bottom: 8px;
}

.service .container .service-box .content-group li .content-info .column-img {
    width: 71px;
    margin: 78px auto 0;
    display: block;
}

.service .container .service-box .content-group li .content-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service .container .service-box .content-box1 {
    height: 400px;
}

.service .container .service-box .content-box1 li {
    border-bottom: 1px solid #d9d9d9;
}

.service .container .service-box .content-box2 {
    height: 386px;
}

.service .container .service-box .content-box2 li {
    border-bottom: 1px solid #d9d9d9;
}

.service .container .service-box .content-box2 .double {
    width: 40%;
}

.service .container .service-box .top-blank {
    height: 74px;
}

.service .container .service-box .top-blank li {
    border-bottom: 1px solid #d9d9d9;
}

.service .container .service-box .bottom-blank {
    height: 84px;
}

.service .container .reserve-box {
    width: 100%;
    margin-bottom: 48px;
    background: #fff url("../images/service/bg1.png") no-repeat left bottom;
    overflow: hidden;
    display: flex;
}

.service .container .reserve-box .reserve-list {
    width: 29.06vw;
    margin-top: 116px;
    margin-left: 13.28vw;
}

.service .container .reserve-box .reserve-list li {
    padding-bottom: 74px;
    position: relative;
    box-sizing: border-box;
    padding-left: 28px;
}

.service .container .reserve-box .reserve-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #383838;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.service .container .reserve-box .reserve-list li::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3px;
    background: rgba(131, 131, 131, 0.2);
    z-index: 1;
}

.service .container .reserve-box .reserve-list li p {
    font-size: 14px;
    line-height: 24px;
    color: #383838;
    margin-bottom: 12px;
}

.service .container .reserve-box .reserve-list li p .qr-code {
    width: 103px;
}

.service .container .reserve-box .reserve-list li .item-title {
    font-size: 18px;
    line-height: 10px;
    margin-bottom: 18px;
    color: #000000;
}

.service .container .reserve-box .reserve-img {
    width: 32.03vw;
    background-size: cover;
    background-position: center;
    margin-left: 3.59vw;
}

.service .container .reserve-box .reserve-title {
    width: 71px;
    height: 232px;
    margin: 194px 0 0 7.55vw;
}

.service .container .reserve-about {
    width: 100%;
    height: 326px;
    background: url("../images/service/bg2.jpg") no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    padding-top: 70px;
}

.service .container .reserve-about p {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    text-align: center;
    font-weight: lighter;
    width: 1118px;
    margin: 0 auto 16px;
}

.service .container .reserve-about .consult {
    display: block;
    width: 138px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    font-size: 16px;
    border-radius: 23px;
    margin: 32px auto 0;
    color: #fff;
    background: #b4141a;
}

@media (max-width: 1400px) {
    .line {
        display: none;
    }
}