body{
    background-color: #000000;
    /* background-image: url(../../img/aboutbg.png); */
    background-size: 100% auto;
    background-position: 0 center 0;
    background-repeat: no-repeat;
}
.m-banner{
    text-align: center;
}

/* 买家秀图片区域 */
.m-user-photo {
    position: relative;
    width: 100%;
    height: 884px;
}
.m-user-photo .user-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.m-user-photo .user-photo-grid {
    position: absolute;
    width: 100%;
    height: 656px;
    display: grid;
    grid-template-columns: 216px 312px 312px 312px 312px 312px;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    justify-content: center;
}

/* 四周渐变遮罩 - 聚光灯效果 */
.m-user-photo .user-photo-grid::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1880px;
    height: 1876px;
    background: radial-gradient(ellipse 49% 352% at center center, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

.m-user-photo .photo-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.m-user-photo .photo-item.animate {
    animation: photoZoomIn 1s ease-out forwards;
}

/* 第一行 */

.m-user-photo .photo-item:nth-child(2) {
    grid-row: 1 / span 2;
    grid-column: 2 / span 1
}

/* 第二行 */
.m-user-photo .photo-item:nth-child(10) {
    grid-row: 2 / span 2;
    grid-column: 5 / span 1
}




.m-user-photo .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.m-user-photo .user-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 656px;
    /* background: rgba(0, 0, 0, 0.5); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.m-user-photo .overlay-content {
    text-align: center;
    color: #fff;
}

.m-user-photo .overlay-title {
    font-size: 70px;
    font-weight: normal;
    letter-spacing: 4px;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1;
}

.m-user-photo .overlay-title.animate {
    animation: textFadeInUp 1s ease-out 0.5s forwards;
}

.m-user-photo .overlay-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1;
}

.m-user-photo .overlay-subtitle.animate {
    animation: textFadeInUp 1s ease-out 0.8s forwards;
}


/* 动画定义 */
@keyframes photoZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.m-history {
    position: relative;
    z-index: 1;
}

.m-contant-banner-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -100px;
    z-index: 1;
    width: 90%;
}
.m-contant-banner-title > .title{
    font-size: 70px;
    color: #fff;
    text-align: center;
    line-height: 1;
    font-family: "Gilroy Bold", "Gilroy ExtraBold", serif;
}
.m-contant-banner-title > .sub-title{
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-family: "Gilroy Bold", "Gilroy ExtraBold", serif;
}


.about-hidee {
    overflow: hidden;
}
.about-title {
    text-align: center;
    line-height: 1;
    color: #fff;
    font-weight: normal;
  }
  .f48 {
    font-size: 48px;
  }
  .history-wrap {
    margin-top: 110px;
    overflow: hidden;
  }
  .history-list {
    padding-right: 11.53%;
    /* padding-left: calc((100vw - 1200px)/2); */
    margin-left: -11.5%;
    /* Center slide text vertically */
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; */
  }
  .history-list .slick-list {
    overflow: visible;
  }
  .history-item {
    width: 50%;
    opacity: 0.1;
    transition: opacity 0.4s;
    cursor: pointer;
  }
  .history-item.slick-active {
    opacity: 1;
  }
  .history-item.swiper-slide-active {
    opacity: 1;
  }
  .history-item.swiper-slide-next{
    opacity: 1;
  }
  .history-tt {
    position: relative;
    margin-right: 32px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .history-tt em {
    display: block;
    margin-left: 36px;
    flex: 1;
    -webkit-box-flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  .history-tt i {
    display: block;
    position: relative;
    float: left;
    width: 34px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 50%;
  }
  .history-tt i:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
    content: "";
    width: 4px;
    height: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
  }
  .history-tt strong {
    display: block;
    float: left;
    margin-left: 24px;
    line-height: 1;
    color: #fff;
    font-size: 48px;
    font-weight: normal;
  }
  .history-text {
    margin-top: 44px;
    margin-right: 32px;
    width: 490px;
  }
  .history-text p {
    color: #fff;
    font-size: 16px;
  }
  .history-btn {
    margin-top: 150px;
    text-align: center;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .history-btn .circle{
    margin: 0 35px;
    width: 40px;
  }
  .history-btn .btn {
    width: 12px;
    cursor: pointer;
  }
  .history-btn .btn.next{
    position: relative;
    transform: rotate(180deg);
  }
  .history-btn i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin: 0 25px;
    font-size: 50px;
    color: #fff;
  }

.m-pinpai{
    position: relative;
    min-height: 1074px;
}

.m-pinpai .pinpai-ink-box{
    width: 1253px;
    height: 1047px;
    margin: 0 auto;
    position: relative;
}

.m-pinpai .pinpai-ink-1{
    position: absolute;
    width: 758px;
    height: 722px;
    height: 0;
    left: 0;
    top: 0;
}
.m-pinpai .pinpai-ink-2{
    position: absolute;
    width: 1038px;
    height: 1074px;
    height: 0;
    left: 192px;
    top: -83px;
}
.m-pinpai .pinpai-ink-3{
    position: absolute;
    width: 615px;
    height: 664px;
    height: 0;
    left: 656px;
    top: 134px;
}
.m-pinpai .pinpai-ink-1.active{
    animation: pinpai-ink-slide 0.3s ease-in-out;
    height: 722px;
}
.m-pinpai .pinpai-ink-2.active{
    animation: pinpai-ink-slide 0.2s ease-in-out;
    height: 1074px;
}
.m-pinpai .pinpai-ink-3.active{
    animation: pinpai-ink-slide 0.2s ease-in-out;
    height: 664px;
}
@keyframes pinpai-ink-slide {
    from {
        height: 0;
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        height: 722px;
        opacity: 1;
        transform: scale(1);
    }
}

.m-pinpai.active .pinpai-ink{
    width: 100%;
}

.m-pinpai .pinpai-ink-wrap{
    width: 1253px;
    height: 1070px;
    position: relative;
}
.m-pinpai .pinpai-ink-wrap-bg{
    width: 100%;
    height: 100%;
}
.m-pinpai .pinpai-ink-wrap-cover{
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}


.m-pinpai .intro{
    text-align: center;
    width: 720px;
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
    font-family: 'Aldus';
}

/* CONTACT US 样式 */
.m-contact-info {
    padding: 100px 0;
    background-color: #000000;
    max-width: 1200px;
    margin: 0 auto;
}
.m-contact-info .title {
    font-size: 48px;
    color: #fff;
    text-align: left;
    margin-bottom: 60px;
}
.m-contact-info .contact-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.m-contact-info .contact-left {
    flex: 1;
    max-width: 520px;
}
.m-contact-info .contact-right {
    flex: 1;
    max-width: 600px;
}
.m-contact-info .contact-box {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
}
.m-contact-info .contact-box-title {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    font-family: 'Aldus';
}
.m-contact-info .contact-box-title .icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}
.m-contact-info .contact-box-title-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Aldus';
    line-height: 1;
}
.m-contact-info .contact-box-title-sub {
    font-family: 'Aldus';
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.m-contact-info .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.m-contact-info .contact-info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}
.m-contact-info .contact-info-item .icon {
    width: 50px;
    margin-right: 15px;
}
.m-contact-info .contact-address {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}
.m-contact-info .contact-address .icon {
    width: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}
.m-contact-info .contact-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}
.m-contact-info .contact-qr .qr-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}
.m-contact-info .contact-social-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.m-contact-info .contact-social-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}
.m-contact-info .contact-social-item .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* 响应式设计 */
@media (max-width: 1370px){
    .m-pinpai .intro{
        top: -165px;
        position: relative;
    }
    .pinpai-ink-box{
        transform: scale(0.7);
    }
}
@media (max-width: 1024px) {
    /* User Photo */
    .m-user-photo {
        height: 1000px;
    }
    .m-user-photo .user-photo-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }
    .m-user-photo .photo-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    .m-user-photo .photo-item:nth-child(2) {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }
    .m-user-photo .photo-item:nth-child(3) {
        grid-column: 5 / 7;
        grid-row: 1 / 2;
    }
    .m-user-photo .photo-item:nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }
    .m-user-photo .photo-item:nth-child(5) {
        grid-column: 5 / 7;
        grid-row: 2 / 4;
    }
    .m-user-photo .photo-item:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    .m-user-photo .photo-item:nth-child(7) {
        grid-column: 3 / 5;
        grid-row: 3 / 5;
    }
    .m-user-photo .photo-item:nth-child(8) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
    .m-user-photo .photo-item:nth-child(9) {
        grid-column: 5 / 7;
        grid-row: 4 / 5;
    }
    .m-user-photo .photo-item:nth-child(10),
    .m-user-photo .photo-item:nth-child(11),
    .m-user-photo .photo-item:nth-child(12) {
        display: none;
    }
    .m-user-photo .overlay-title {
        font-size: 50px;
        letter-spacing: 3px;
    }
    .m-user-photo .overlay-subtitle {
        font-size: 14px;
    }

    .m-contant-banner-title > .title {
        font-size: 50px;
    }
    .m-contant-banner-title > .sub-title {
        font-size: 14px;
    }

    .about-title.f48 {
        font-size: 36px;
    }
    .history-wrap {
        margin-top: 80px;
    }
    .history-item {
        width: 70%;
    }
    .history-tt strong {
        font-size: 36px;
    }
    .history-text {
        width: 400px;
    }
    .history-text p {
        font-size: 14px;
    }
    .history-btn {
        margin-top: 100px;
    }

    .m-pinpai {
        min-height: 800px;
    }
    .m-pinpai .pinpai-ink {
        height: 800px;
    }
    .m-pinpai .intro {
        width: 90%;
        font-size: 13px;
    }



    .m-contact-info {
        padding: 80px 0;
    }
    .m-contact-info .title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    .m-contact-info .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .m-contact-info .contact-left,
    .m-contact-info .contact-right {
        max-width: 100%;
        width: 100%;
    }
    .m-contact-info .contact-box {
        
    }
}

@media (max-width: 768px) {
    .m-contact-info .title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .m-contact-info .contact-box {
        padding: 25px;
    }
    .m-contact-info .contact-box-title-text {
        font-size: 16px;
    }
    .m-contact-info .contact-box-title-sub {
        font-size: 11px;
    }
    .m-contact-info .contact-social {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    /* Body */
    body {
        background-size: 100% auto;
    }

    /* User Photo */
    .m-user-photo {
        height: 400px;
    }
    .m-user-photo .user-photo-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
    }
    .m-user-photo .overlay-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    .m-user-photo .overlay-subtitle {
        font-size: 12px;
        margin-top: 15px;
    }

    /* Banner */
    .m-contant-banner-title {
        margin-top: -60px;
        width: 95%;
    }
    .m-contant-banner-title > .title {
        font-size: 32px;
    }
    .m-contant-banner-title > .sub-title {
        font-size: 12px;
        margin-top: 10px;
    }

    /* History */
    .m-history {
        position: relative;
        z-index: 1;
    }
    .about-title.f48 {
        font-size: 28px;
    }
    .history-wrap {
        margin-top: 50px;
    }
    .history-list {
        padding-right: 5%;
        margin-left: -21%;
    }
    .history-item {
        width: 90%;
    }
    .history-tt {
        margin-right: 15px;
    }
    .history-tt i {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    .history-tt strong {
        font-size: 28px;
        margin-left: 15px;
    }
    .history-tt em {
        margin-left: 20px;
    }
    .history-text {
        margin-top: 30px;
        margin-right: 15px;
        width: 100%;
        max-width: 350px;
    }
    .history-text p {
        font-size: 13px;
        line-height: 1.6;
        padding: 0 10px 0 0;
    }
    .history-btn {
        margin-top: 60px;
    }
    .history-btn .circle {
        margin: 0 20px;
        width: 30px;
    }
    .history-btn .btn {
        width: 10px;
    }

    /* Pinpai */
    .m-pinpai {
        min-height: 600px;
        height: 716px;
    }
    .m-pinpai .pinpai-ink {
        height: 600px;
    }
    .m-pinpai .intro {
        width: 95%;
        font-size: 12px;
        padding: 0 15px;
        top: -570px;
    }

    /* Contact Info */
    .m-contact-info {
        padding: 60px 0;
    }
    .m-contact-info .title {
        font-size: 28px;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    .m-contact-info .contact-content {
        padding: 0 15px;
    }
    .m-contact-info .contact-box {
        padding: 25px 20px;
        border-radius: 15px;
    }
    .m-contact-info .contact-box-title .icon {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    .m-contact-info .contact-box-title-text {
        font-size: 16px;
    }
    .m-contact-info .contact-box-title-sub {
        font-size: 11px;
    }
    .m-contact-info .contact-info-item {
        font-size: 13px;
    }
    .m-contact-info .contact-info-item .icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    .m-contact-info .contact-address {
        font-size: 13px;
    }
    .m-contact-info .contact-address .icon {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    .m-contact-info .contact-social {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30px;
        gap: 20px;
    }
    .m-contact-info .contact-qr .qr-img {
        width: 100px;
        height: 100px;
    }
    .m-contact-info .contact-social-item {
        font-size: 13px;
    }
    .m-contact-info .contact-social-item .icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .m-contant-banner-title > .title {
        font-size: 26px;
    }
    .m-contant-banner-title > .sub-title {
        font-size: 11px;
    }

    .about-title.f48 {
        font-size: 24px;
    }
    .history-tt strong {
        font-size: 24px;
    }
    .history-text p {
        font-size: 12px;
    }

    .m-contact-info .title {
        font-size: 24px;
    }
    .m-contact-info .contact-box {
        padding: 20px 15px;
    }

    .m-pinpai .pinpai-ink-box{
        left: 50%;
        top: -232px;
        transform: translateX(-50%) scale(0.3);
    }
}

/* 留言表单样式 */
.m-leave-message {
    padding: 100px 20px;
    background-color: #000000;
    max-width: 1200px;
    margin: 0 auto;
}
.m-leave-message .leave-title {
    font-size: 48px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-align: right;
    margin: 0 auto 60px;
}
.m-leave-message .leave-form {
    margin: 0 auto;
}
.m-leave-message .leave-form-row {
    margin-bottom: 30px;
}
.m-leave-message .leave-form-row::after {
    content: "";
    display: table;
    clear: both;
}
.m-leave-message .leave-form-col {
    float: left;
    width: 50%;
    box-sizing: border-box;
}
.m-leave-message .leave-form-col:first-child {
    padding-right: 15px;
}
.m-leave-message .leave-form-col:last-child {
    padding-left: 15px;
}
.m-leave-message .leave-input,
.m-leave-message .leave-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.m-leave-message .leave-input:focus,
.m-leave-message .leave-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
}
.m-leave-message .leave-input::placeholder,
.m-leave-message .leave-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.m-leave-message .leave-textarea {
    min-height: 300px;
    resize: vertical;
    line-height: 1.6;
}
.m-leave-message .leave-form-submit {
    text-align: center;
    margin-top: 40px;
}
.m-leave-message .leave-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
    width: 100px;
    height: 100px;
    background-color: #797979;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.m-leave-message .leave-submit-btn:hover {
    transform: scale(1.1);
}
.m-leave-message .leave-submit-btn .submit-icon {
    width: 52px;
    height: 52px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .m-leave-message {
        padding: 60px 20px;
    }
    .m-leave-message .leave-title {
        font-size: 25px;
        margin-bottom: 40px;
    }
    .m-leave-message .leave-form-col {
        float: none;
        width: 100%;
    }
    .m-leave-message .leave-form-col:first-child {
        padding-right: 0;
    }
    .m-leave-message .leave-form-col:last-child {
        padding-left: 0;
    }
    .m-leave-message .leave-form-row {
        margin-bottom: 20px;
    }
    .m-leave-message .leave-textarea {
        min-height: 200px;
    }
    .m-leave-message .leave-submit-btn .submit-icon {
        width: 50px;
        height: 50px;
    }

    .m-user-photo .user-photo-grid::before{
        width: 145px;
    }
    .m-user-photo .user-photo-grid::after{
        width: 145px;
    }
}


@media (max-width: 1880px) {
    .m-user-photo .user-photo-grid::before{
        width: 102%;
        background: radial-gradient(ellipse 37% 363% at center center, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%);
    }
}

