.splash {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: RGBA(249, 242, 237, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .6s;
}
.splash .bg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 826px;
	max-height: 86vh;
}
.splash .bg img{
	height: 100%;
	animation: rotate360 18s linear infinite;
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.splash-logo {
    display: inline-block;
}

.splash-logo img {
    display: block;
    width: 161px;
}
.splash-container{
    max-width: 94%;
}
.splash .brand-slogan {
    font-weight: 300;
    color: #EA5420;
    line-height: 1;
    margin: 1.22em auto;
}
.splash .brand-slogan span:not(:last-child){
    margin-right: 1em;
}
.splash .photo-frame {
    width: 600px;
    margin: 0 auto;
    max-width: 100%;
}

.splash .photo-frame .pic {
    border-radius: 20px;
}

.splash .photo-frame .pic img {
    filter: grayscale(100%);
}

.splash .splashBtn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 57px;
    margin-top: -70px;
    z-index: 3;
    gap: 33px;
}

.splash .splashBtn .loading-container,
.splash .splashBtn .enter-btn {
    width: 140px;
    height: 140px;
    background: #EA5420;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Rany-Bold;
    font-size: 18px;
    color: #F9F2ED;
    line-height: 1;
}

.splash .splashBtn .enter-btn {
    flex-direction: column;
    font-size: 24px;
    gap: .5em;
    display: none;
    /* opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all .6s; */
}

.splash .splashBtn .enter-btn.visible {
    display: flex;
    /* opacity: 1;
    pointer-events: auto;
    visibility: visible; */
}

.splash .splashBtn .enter-btn .icon-arrowright {
    font-weight: bold;
    /* font-size: 20px; */
}
.banner .swiper-slide{
	position: relative;
	overflow: hidden;
}
.banner .swiper-slide .pic img {
    display: block;
    width: 100%;
	/*transform: scale(1.1);*/
	transition: all 4s;
}
.banner .swiper-slide .playBtn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.banner .swiper-slide .playBtn .iconfont{
    font-size: 100px;
    color: #fff;
}
.banner .swiper-slide-active .pic img{
	/*transform: scale(1);*/
}
.banner .swiper-pagination {
    bottom: 30px;
}

.banner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(241, 242, 243, .5);
    border-radius: 7px;
    transition: all .6s;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    width: 40px;
    background-color: rgba(234, 85, 32, 1);
}

.main {
    background: RGBA(250, 250, 250, 1);
}

.jewelry-collection {
    padding: 200px 0;
}

.jewelry-collection .collection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jewelry-collection .collection-item:not(:last-child) {
    margin-bottom: 200px;
}

.jewelry-collection .collection-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.jewelry-collection .collection-text {
    width: 34.71%;
}

.jewelry-collection .collection-item:nth-child(2n) .collection-text {
    text-align: right;
}

.jewelry-collection .collection-title {
    font-weight: 400;
    font-size: 18px;
    color: #898989;
    line-height: 1;
    text-transform: uppercase;
}

.jewelry-collection .collection-subtitle {
    font-weight: 300;
    color: rgba(34, 34, 34, 1);
    margin: .39em 0 .8em;
}

.jewelry-collection .collection-subtitle span {
    color: #EA5520;
}

.jewelry-collection .collection-desc {
    font-weight: 300;
    font-size: 18px;
    color: #898989;
    line-height: 30px;
}

.jewelry-collection .view-more {
    margin-top: 49px;
}

.view-more {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-bottom: 1px solid rgba(222, 222, 222, 1);
    transition: all .6s;
    height: 30px;
}

.view-more:hover {
    border-color: rgba(234, 85, 32, 1);
}

.view-more span {
    display: block;
    font-weight: 300;
    font-size: 16px;
    color: #898989;
    line-height: 1;
    padding-bottom: 14px;
    transition: all .3s;
}

.view-more:hover span {
    transform: translateY(-100%);
    color: rgba(234, 85, 32, 1);
}

.jewelry-collection .collection-images {
    width: 60.71%;
}
.jewelry-collection .collection-images .swiper-wrapper{
	transition-timing-function:linear;
}
.jewelry-collection .collection-images .swiper-slide {
    width: 300px;
}

.jewelry-collection .collection-images .swiper-slide:not(:last-child) {
    margin-right: 40px;
}

.jewelry-collection .collection-images .swiper-slide .picCover {
    padding-top: 160%;
}

.jewelry-collection .collection-images .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #EA5520;
    cursor: pointer;
    transition: all .6s;
}

.jewelry-collection .collection-images .btn.btn-prev {
    left: 15px;
}

.jewelry-collection .collection-images .btn.btn-next {
    right: 15px;
}

.jewelry-collection .collection-images .btn .iconfont {
    font-size: 20px;
}

.jewelry-collection .collection-images .btn:not(.swiper-button-disabled):hover {
    background-color: #EA5520;
    color: #fff;
}

.jewelry-collection .collection-images .btn.swiper-button-disabled {
    color: rgba(234, 85, 32, .5);
    cursor: not-allowed;
}

.accessories-section {
    padding: 160px 0 120px;
    background-image: url(../img/index-13.jpg);
    background-size: cover;
}

.accessories-section .title {
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #222222;
    line-height: 1;
    text-align: center;
}

.accessories-section .box-c {
    position: relative;
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
}

.accessories-section .box-c .en {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    font-family: HarmonyOS Sans SC;
    font-weight: 900;
    font-size: 160px;
    color: rgba(137, 137, 137, 0);
    line-height: 1;
    text-stroke: 1px #FFFFFF;
    opacity: 0.5;
    -webkit-text-stroke: 1px #FFFFFF;
    transform: translateY(-50%);
    text-transform: uppercase;
    z-index: 2;
}

.accessories-section .box-c .l {
    position: relative;
    width: 60.5%;
    z-index: 3;
}

.accessories-section .box-c .item {
    display: inline-block;
    max-width: 100%;
}

.accessories-section .box-c .r {
    position: relative;
    width: 34.92%;
    z-index: 3;
    margin-top: 166px;
}

.accessories-section .box-b {
    position: relative;
    margin: -20px auto 0;
    display: flex;
    justify-content: space-between;
    width: 1104px;
    max-width: 100%;
    z-index: 3;
}

.accessories-section .box-b .l {
    width: 45.28%;
}

.accessories-section .box-b .r {
    width: 47.91%;
}

.accessories-section .box-b .r .en {
    font-weight: 400;
    color: #222222;
    line-height: 1;
    text-transform: uppercase;
}

.accessories-section .box-b .r .zh {
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #222222;
    line-height: 1.27;
    margin-top: 1.4em;
}

.accessories-section .box-b .r .text-box {
    font-family: Microsoft YaHei;
    font-weight: 300;
    font-size: 18px;
    color: #898989;
    line-height: 30px;
    margin-top: 22px;
}

.accessories-section .box-b .r .view-more {
    margin-top: 46px;
}

.store-custom-section {
    padding: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

.store-custom-section .item {
    background-color: #fff;
}

.store-custom-section .picCover {
    padding-top: 53.76%;
}

.store-custom-section .text-box {
    padding: 52px 20px;
}

.store-custom-section .text-title {
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #222222;
    line-height: 1;
    transition: all .6s;
}

.store-custom-section .item .text-title:hover {
    color: #EA5420;
}

.store-custom-section .text-des {
    font-weight: 400;
    font-size: 18px;
    color: #898989;
    font-family: Rany;
    line-height: 1;
    margin-top: 28px;
}

.brand-news-section {
    padding: 140px 0 160px;
}

.brand-news-section .brand-news-header {
    text-align: center;
}

.brand-news-section .brand-news-title {
    font-weight: 300;
    color: #222222;
    line-height: 1;
}

.brand-news-section .brand-news-subtitle {
    font-weight: 400;
    font-size: 18px;
    color: #898989;
    line-height: 1;
    margin-top: 18px;
}

.brand-news-section .brand-news-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-news-section .brand-news-grid .news-card {
    border: 1px solid #EBEBEB;
    display: block;
    padding: 50px 40px 40px;
    transition: all .6s;
}

.brand-news-section .brand-news-grid .news-card:hover {
    background-color: #fff;
    /* border-color: #EA5420; */
}

.brand-news-section .brand-news-grid .news-card-title {
    font-family: Microsoft YaHei;
    font-weight: 300;
    font-size: 24px;
    color: #222222;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .6s;
}

.brand-news-section .brand-news-grid .news-card:hover .news-card-title {
    color: #EA5420;
}

.brand-news-section .brand-news-grid .news-card-content {
    font-family: Microsoft YaHei;
    font-weight: 300;
    font-size: 18px;
    color: #999999;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 40px;
}

.brand-news-section .brand-news-grid .icon-iconset0416 {
    display: block;
    font-size: 24px;
    color: rgba(153, 153, 153, 1);
    margin-top: 20px;
}

.craftsmanship-banner {
    background-image: url(../img/index-12.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.craftsmanship-banner .box-c {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 268px 0;
    /* font-family: Microsoft YaHei; */
    font-weight: 300;
    font-size: 72px;
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
    gap: 1em;
}
@media (maxo-width: 1440px) {
    .accessories-section .box-c .en{
        font-size: 130px;
    }
    .craftsmanship-banner .box-c{
        font-size: 60px;
    }
}
@media (max-width: 1280px) {
    .craftsmanship-banner .box-c{
        font-size: 48px;
    }
     .accessories-section .box-c .en{
        font-size: 100px;
    }
}
@media (max-width:1199px) {
    .craftsmanship-banner .box-c{
        font-size: 36px;
    }
    .accessories-section .box-c .en{
        font-size: 80px;
    }
    .banner .swiper-pagination-bullet{
        width: 9px;
        height: 9px;
    }
    .banner .swiper-pagination-bullet-active{
        width: 30px;
    }
    .banner .swiper-pagination{
        bottom: 20px;
    }
    .brand-news-section,
    .accessories-section,
    .jewelry-collection{
        padding: 80px 0;
    }
    .brand-news-section .brand-news-grid,
    .accessories-section .box-c{
        margin-top: 45px;
    }
    .jewelry-collection .collection-item:not(:last-child){
        margin-bottom: 80px;
    }
    .craftsmanship-banner .box-c{
        padding: 231px 0;
    }
    .accessories-section .box-c .r{
        margin-top: 68px;
    }
    .banner .swiper-slide .playBtn .iconfont{
        font-size: 80px;
    }
}
@media (max-width:1024px) {
    .craftsmanship-banner .box-c{
        font-size: 30px;
    }
    .accessories-section .box-c .en{
        font-size: 60px;
    }
    .brand-news-section,
    .accessories-section,
    .jewelry-collection{
        padding: 70px 0;
    }
    .brand-news-section .brand-news-grid,
    .accessories-section .box-c{
        margin-top: 40px;
    }
    .jewelry-collection .collection-item:not(:last-child){
        margin-bottom: 70px;
    }
    .craftsmanship-banner .box-c{
        padding: 186px 0;
    }
    .jewelry-collection .collection-item:nth-child(2n),
    .jewelry-collection .collection-item{
        flex-direction: column;
    }
    .jewelry-collection .collection-images,
    .jewelry-collection .collection-text{
        width: 100%;
    }
    .jewelry-collection .collection-text{
        margin-bottom: 30px;
    }
    .jewelry-collection .view-more{
        margin-top: 20px;
    }
    .jewelry-collection .collection-images .swiper-slide:not(:last-child){
        margin-right: 30px;
    }
    .jewelry-collection .collection-images .swiper{
        width: 100% !important;
        margin-left: 0 !important;
    }
    .jewelry-collection .collection-item:nth-child(2n) .collection-text{
        text-align: left;
    }
    .accessories-section .box-b .r{
        width: 50%;
    }
    .accessories-section .box-b .r .zh{
        margin-top: .5em;
    }
    .accessories-section .box-b .r .text-box{
        margin-top: 15px;
    }
    .accessories-section .box-b .r .view-more{
        margin-top: 25px;
    }
    .brand-news-section .brand-news-subtitle{
        margin-top: 10px;
    }
    .brand-news-section .brand-news-grid .news-card{
        padding: 30px;
    }
    .brand-news-section .brand-news-grid .news-card-title{
        font-size: 22px;
    }
    .brand-news-section .brand-news-grid .news-card-content{
        margin-top: 20px;
    }
    .banner .swiper-slide .playBtn .iconfont{
        font-size: 70px;
    }
}
@media (max-width: 768px) {
    .banner .swiper-slide .playBtn .iconfont{
        font-size: 50px;
    }
    .craftsmanship-banner .box-c{
        font-size: 24px;
    }
    .brand-news-section .brand-news-grid{
        grid-template-columns: repeat(1,1fr);
    }
    .accessories-section .box-b{
        flex-direction: column;
        margin-top: 20px;
    }
    .accessories-section .box-b .l{
        width: 100%;
    }
    .accessories-section .box-b .r{
        width: 100%;
        margin-top: 30px;
    }
    .accessories-section .box-c .r{
        margin-top: 28px;
    }
    .accessories-section .box-c .en{
        font-size: 40px;
    }
    .jewelry-collection .collection-images .swiper-slide{
        width: 249px;
    }
    .brand-news-section,
    .accessories-section,
    .jewelry-collection{
        padding: 60px 0;
    }
    .brand-news-section .brand-news-grid,
    .accessories-section .box-c{
        margin-top: 30px;
    }
    .jewelry-collection .collection-item:not(:last-child){
        margin-bottom: 50px;
    }
    .craftsmanship-banner .box-c{
        padding: 149px 0;
    }
    .store-custom-section .text-box{
        padding: 40px 14px;
    }
    .store-custom-section .text-des{
        margin-top: 20px;
        font-size: 16px;
    }
    .store-custom-section .text-title{
        font-size: 20px;
    }
    .banner .swiper-pagination{
        bottom: 5px;
    }
}
@media (max-width: 500px) {
    .banner .swiper-slide .playBtn .iconfont{
        font-size: 40px;
    }
    .brand-news-section .brand-news-subtitle{
        font-size: 16px;
    }
    .brand-news-section .brand-news-grid .news-card-content{
        font-size: 16px;
    }
    .brand-news-section .brand-news-grid .news-card-title{
        font-size: 20px;
    }
    .brand-news-section .brand-news-grid .news-card{
        padding: 20px;
    }
    .store-custom-section{
        grid-template-columns: repeat(1,1fr);
    }
    .store-custom-section .text-title{
        font-size: 18px;
    }
    .store-custom-section .text-des{
        margin-top: 10px;
    }
    .store-custom-section .text-box{
        padding: 30px 14px;
    }
    .accessories-section .box-b .r .text-box{
        font-size: 16px;
    }
    .accessories-section .box-c .item{
        width: 100%;
    }
    .accessories-section .box-c .r{
        width: 100%;
        text-align: right;
    }
    .accessories-section .box-c .l{
        width: 100%;
    }
    .accessories-section .box-c{
        flex-direction: column;
    }
    .jewelry-collection .collection-images .btn .iconfont{
        font-size: 18px;
    }
    .jewelry-collection .collection-images .btn{
        width: 34px;
        height: 34px;
    }
    .jewelry-collection .collection-images .btn.btn-prev{
        left: 10px;
    }
    .jewelry-collection .collection-images .btn.btn-next{
        right: 10px;
    }
    .jewelry-collection .collection-images .swiper-slide:not(:last-child){
        margin-right: 20px;
    }
    .jewelry-collection .collection-desc{
        font-size: 16px;
    }
    .jewelry-collection .collection-subtitle{
        margin-bottom: .5em;
    }
    .jewelry-collection .view-more{
        margin-top: 15px;
    }
    .brand-news-section,
    .accessories-section,
    .jewelry-collection{
        padding: 50px 0;
    }
    .brand-news-section .brand-news-grid,
    .accessories-section .box-c{
        margin-top: 25px;
    }
    .craftsmanship-banner .box-c{
        padding: 94px 0;
    }
}