*,
html,
body {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #33383C;
    font-family: 'NotoSans';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* body{
    background: #f7f8f9;
} */
/* @font-face {
    font-family: "NotoSans";
    font-weight: 300;
    src: url(../font/463dafcda517f24f-s.p.woff);
} */
@font-face {
    font-family: "NotoSans";
    font-weight: 400;
    src: url(../font/4473ecc91f70f139-s.p.woff);
}

/* @font-face {
    font-family: "NotoSans";
    font-weight: 100;
    src: url(../font/NotoSansSCThin-5.ttf);
}

@font-face {
    font-family: "NotoSans";
    font-weight: 300;
    src: url(../font/NotoSansSCLight-3.ttf);
}
@font-face {
    font-family: "NotoSans";
    font-weight: 400;
    src: url(../font/NotoSansSC-6.ttf);
}
@font-face {
    font-family: "NotoSans";
    font-weight: 500;
    src: url(../font/NotoSansSCMedium-4.ttf);
}
@font-face {
    font-family: "NotoSans";
    font-weight: 600;
    src: url(../font/Noto-Sans-SC-Bold-2.ttf);
} */
ul,
ol,
dl,
li,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
}

a {
    cursor: pointer;
}

a,
img,
select,
button,
input,
input[type=password],
input[type=text],
textarea {
    outline: none;
    resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

:root {
    --blue: #0172be;
    --white: #ffffff;
}

/*清除浮动*/
.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

input {
    cursor: pointer;
    -webkit-appearance: none;
}

select {
    -webkit-appearance: button;
}

.padd {
    padding: 98px 0;
}

.inner {
    width: 92%;
    /* width: 1530px; */
    margin: 0 auto;
}

@media (max-width: 1680px) {
    /* .inner {
        width: 1170px;
    } */
}

@media (max-width: 1200px) {
    /* .inner{
        width: 970px;
    } */
}

@media (max-width: 900px) {
    /* .inner{
        width: 90%;
    } */
}

@media(max-width:1440px) {
    .padd {
        padding: 78px 0;
    }
}

@media(max-width:900px) {
    .padd {
        padding: 58px 0;
    }
}

@media(max-width:680px) {
    .padd {
        padding: 38px 0;
    }
}

/* swiper.js 控制器样式 */
.pos.swiper-pagination {
    width: 100%;
    bottom: 0 !important;
    position: relative;
    margin-top: 20px;
}

@media(max-width:500px) {

    .pos.swiper-pagination {
        margin-top: 10px;
    }
}


.swiper-pagination-bullet,
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 28px;
}

.swiper-pagination-bullet {
    cursor: pointer;
    opacity: 1;
    position: relative;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.58);
    transition: all 0.48s;
}

.swiper-pagination-bullet.my-bullet-active {
    width: 52px;
    background: rgba(255, 255, 255, 1);
}




/* 动画效果 */
.wgt-fade-animate {
    opacity: .1;
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
}

.appear {
    -webkit-animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        transform: translateY(80px);
        -webkit-transform: translateY(80px);
        -moz-transform: translateY(80px);
        -ms-transform: translateY(80px);
        -o-transform: translateY(80px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@keyframes opacity_show {
    0% {
        opacity: .1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}



.app_left {
    transform: translateX(-150px);
    opacity: 0;
    -moz-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    -o-transform: translateX(-150px);
    -webkit-transform: translateX(-150px);
}

.app_h {
    -webkit-animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_left {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes opacity_left {
    0% {
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -webkit-transform: translateX(-150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

.app_right {
    transform: translate(150px);
    -webkit-transform: translate(150px);
    -moz-transform: translate(150px);
    -ms-transform: translate(150px);
    -o-transform: translate(150px);
    opacity: 0;
}

.app_r {
    animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -webkit-animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@-webkit-keyframes opacity_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
        -moz-transform: translateX(150px);
        -ms-transform: translateX(150px);
        -o-transform: translateX(150px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes opacity_right {
    0% {
        opacity: 0;
        transform: translate(150px);
        -webkit-transform: translate(150px);
        -moz-transform: translate(150px);
        -ms-transform: translate(150px);
        -o-transform: translate(150px);
    }

    100% {
        -webkit-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

.appImg img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
}

.appImg.app_I img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.appArf::after {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: #fff;
    transition: all 0.8s .1s;
    -webkit-transition: all 0.8s .1s;
    -moz-transition: all 0.8s .1s;
    -ms-transition: all 0.8s .1s;
    -o-transition: all 0.8s .1s;
}

.appArf.appArter::after {
    width: 0%;
}



/*滚动条宽高及背景*/
::-webkit-scrollbar {
    width: 0px;
    height: 6px;
}

/*轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

/*滑块*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background: #303030;
}

/*两端按钮*/
::-webkit-scrollbar-button {
    background-color: none;
    height: 0;
}

/*右下角汇合处样式*/
::-webkit-scrollbar-corner {
    background: #fff;
}










/* 顶部 */
.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    transition: transform 0.8s ease-out;
    -webkit-transition: transform 0.8s ease-out;
    -moz-transition: transform 0.8s ease-out;
    -ms-transition: transform 0.8s ease-out;
    -o-transition: transform 0.8s ease-out;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    border-bottom: 1px solid rgba(0, 0, 0, .01);
}

.headerAct .inner {
    transform: translateY(-90px);
    -webkit-transform: translateY(-90px);
    -moz-transform: translateY(-90px);
    -ms-transform: translateY(-90px);
    -o-transform: translateY(-90px);
}

.headerTop {
    z-index: 2;
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
    position: relative;
    background: #f7f8f9;
}

.headerCon {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.headerCon svg {
    width: 100%;
    height: 100%;
}

.header .inner {
    background: #fff;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.HdIList {
    display: flex;
    align-items: center;
    transition: opacity 0.48s .2s;
}

.headOpa .HdIList {
    opacity: 1;
}

.HdIcon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.HdIcon svg {
    width: 25px;
    height: 25px;
}

.HdIcon svg path {
    fill: #33383C;
}

.HdIcon:hover svg path {
    fill: #000;
}

.HdLogo {
    top: 45px;
    width: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: top 0.8s ease-in, width 0.8s ease-in;
    -webkit-transition: top 0.8s ease-in, width 0.8s ease-in;
    -moz-transition: top 0.8s ease-in, width 0.8s ease-in;
    -ms-transition: top 0.8s ease-in, width 0.8s ease-in;
    -o-transition: top 0.8s ease-in, width 0.8s ease-in;
}

.HdLogoCen {
    top: 45px;
    width: 100px;
}

.HdLogo img {
    width: 100%;
}

.HdOpen {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.48s .2s;
}

.headOpa .HdOpen {
    opacity: 1;
}

.HdOpen span {
    width: 20px;
    height: 2px;
    background: #333;
    display: block;
    margin: 2px 0;
}

  @media (max-width: 1024px){
    .HdIcon {
    width: 35px;
    height: 35px;
}
.header .inner {
    padding: 15px 0;
}
.HdOpen {
    width: 40px;
    height: 40px;}
        .HdLogLogo {
        left: 56px;
    }
}
  @media (max-width: 680px){
    .HdLogo {
    width: 80px;
}
.headerTop{
    font-size: 13px;
}
.headerCon {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 20px;
}
}



/* 底部 */
.fooder {
    background: #eeeeee;
    position: relative;
    padding: 16px;
}

.FdCon {
    background: #fff;
    padding: 0 32px;
    position: relative;
}

.FdFBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.FdFItem {
    padding: 32px 0;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    width: 30%;
}

.FdFItem::after {
    width: 1px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: -30px;
    content: '';
    background: #eee;
    transform: translateY(-50%);
}

.FdFTit {
    position: relative;
}

.FdFTit p {
    color: #333;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.FdFTit span {
    font-size: 16px;
    margin-top: 12px;
    line-height: 1;
    color: #7B8487;
    display: block;
}

.FdFJt {
    position: relative;
}

.FdUBox {
    display: flex;
    justify-content: space-between;
    margin: 70px 0 50px;
}

.FdUZg {
    display: flex;
    align-items: center;
}

.FdUZg img {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.FdUZg a {
    font-size: 14px;
    color: #7B8487;
    line-height: 1;
}

.FdULText p {
    font-size: 24px;
    line-height: 1;
    margin-top: 15px;
}

.FdULeft {
    width: 30%;
    position: relative;
    display: flex;
}

.FdURig {
    width: 60%;
    position: relative;
}

.FdURig ul {
    display: flex;
    justify-content: space-between;
}

.FdURig ul li {
    width: 30%;
    position: relative;
}

.FdURig ul a {
    font-size: 14px;
    color: #7B8487;
    display: block;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.FdURig ul a:first-child {
    /* text-transform: uppercase; */
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #33383C;
}

.FdURig ul a svg {
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.FdURig ul a svg path {
    fill: #7B8487;
}

.FdWBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.FdLogo {
    width: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.FdLogo img {
    width: 100%;
}

.FdWYy {
    display: flex;
    align-items: center;
}

.FdWYy h4 {
    font-size: 14px;
    color: #7B8487;
}

.FdWYy p {
    font-size: 14px;
    margin: 0 5px 0 10px;
}

.FdWBq {
    position: absolute;
    left: 0;
    top: 50%;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    color: #7B8487;
}



.FdULinp {
    margin-top: 30px;
}

.FdULinp input {
    width: 300px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0 20px;
    font-size: 16px;
    background: #f7f8f9;
}

.FdULinp input::placeholder {
    color: #7B8487;
}

.FdULinp a {
    width: 120px;
    margin-top: 10px;
    height: 50px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 8px;
}

.FdWGz {
    display: flex;
    align-items: center;
}

.FdWGz p {
    color: #7B8487;
}

.FdWGz a {
    padding: 0 10px;
    opacity: .8;
    transition: all 0.8s;
}

.FdWGz a:hover {
    opacity: 1;
}




.FdBBox {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 50px;
    padding: 28px 0;
}

.FdBBox a {
    position: relative;
}

.FdBBox span {
    font-size: 14px;
    color: #7B8487;
    position: relative;
}

.FdBBox p::after {
    width: 1px;
    height: 18px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
}

.FdBBox span::before {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #ccc;
}

.FdBBox p {
    font-size: 14px;
    color: #7B8487;
    padding: 0 30px;
    position: relative;
}

.FdBBox p:last-child::after {
    width: 0;
}

@media (max-width: 1680px) {
    .FdFTit p {
        font-size: 18px;
    }
    .FdFTit span {
    font-size: 14px;
}
.FdULText p {
    font-size: 20px;
}
.FdURig ul a:first-child{
    font-size: 18px;
}
}
@media (max-width: 1280px){
    .FdBBox {
        margin-top: 20px;
    padding: 18px 0;
}
.FdULinp input {
    width: 280px;
    height: 54px;
    padding: 0 20px;
    font-size: 14px;
}
.FdUBox {
     margin: 50px 0 30px;
}
.FdURig ul a{
    margin-bottom: 10px;
}
.FdURig ul a:first-child{
    margin-bottom: 18px;
}
}
@media (max-width: 1024px){
    .FdFBox{
        flex-wrap: wrap;
            border-bottom:none;
    }
    .FdFItem{
        width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }
    .FdUBox{
        flex-wrap: wrap;
    }
    .FdULeft{
        width: 100%;
    }
    .FdURig{
        width: 100%;
        margin-top: 30px;
    }
    .FdURig ul{
        flex-wrap: wrap;
    }
    .FdURig ul li{
        width: 100%;
        margin-top: 20px;
    }
        .FdURig ul a:first-child {
        margin-bottom: 12px;
    }
    .FdWBox{
        flex-direction: column;
            align-items: flex-start;
            padding: 0;
    }
    .FdWGz{
        margin-bottom: 10px;
    }
    .FdLogo {
    width: 100px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.FdBBox p {
    padding: 0 15px;
}
    /* .FdBBox{
        display: none;
    } */
}
@media (max-width: 768px){
    .FdFItem {
    padding: 20px 0;
}
    .FdUBox {
        margin: 20px 0 30px;
    }
    .FdCon{
        padding: 20px;
    }
    .FdBBox{
        flex-direction: column;
        align-items: flex-start;
    }
    .FdBBox p{
        padding: 8px 0;
    }
    .FdBBox p::after{
        width: 0;
    }
}
@media (max-width: 500px){
.FdULinp input{
    width: 100%;
}
.FdULText{
    width: 100%;
}
}

/* 标题 */
.inTit p {
    font-size: 36px;
    font-weight: 500;
}

.inTit.center p {
    text-align: center;
}

.conSBtn {
    font-size: 14px;
    position: relative;
    display: inline-flex;
}

.conSBtn::after {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.52);
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    transition: width 0.8s;
    -webkit-transition: width 0.8s;
    -moz-transition: width 0.8s;
    -ms-transition: width 0.8s;
    -o-transition: width 0.8s;
}

.conSBtn:hover::after {
    width: 0;
    left: 0;
}
 @media (max-width: 1368px){
   .inTit p{
   font-size: 32px;
}
 
 }

 @media (max-width: 1280px){
   .inTit p{
   font-size: 28px;
}
 
 }

 @media (max-width: 768px){
  .inTit p {
        font-size: 24px;
    }

 }
   @media (max-width: 500px){
  .inTit p {
        font-size: 20px;
    }

 }








/* 内页 */
.pageCon {
    margin-top: 90px;
}

.pageNan {
    width: 100%;
    height: calc(100vh - 120px);
    padding: 0 20px;
    position: relative;
}

.pageImg {
    width: 100%;
    height: 100%;
    position: relative;
}

.pageImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pageImg::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .5) 100%);
}

.pageTbox {
    max-width: 650px;
    width: 80%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.pageTit {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.pageText {
    font-size: 16px;
    margin: 20px 0 30px;
    color: #ddd;
    text-align: center;
}

.pageBtn {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pageBtn a {
    width: 64px;
    height: 64px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageBtn a::before {
    opacity: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(248, 248, 248, 0.098);
    border-radius: 100%;
    transition: background 0.5s cubic-bezier(0.31, 0, 0.13, 1);
    backdrop-filter: blur(calc(3.125px));
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.pageBtn a::after {
    opacity: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    display: block;
    border: 1px solid rgba(248, 248, 248, 0.098);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: border 0.5s cubic-bezier(0.31, 0, 0.13, 1);
    -webkit-transition: border 0.5s cubic-bezier(0.31, 0, 0.13, 1);
    -moz-transition: border 0.5s cubic-bezier(0.31, 0, 0.13, 1);
    -ms-transition: border 0.5s cubic-bezier(0.31, 0, 0.13, 1);
    -o-transition: border 0.5s cubic-bezier(0.31, 0, 0.13, 1);
}

.pageBtn a svg {
    width: 20px;
    height: 20px;
    opacity: .6;
    position: relative;
}

.pageBtn a svg path {
    fill: #fff;
}

.pageBtn a:hover::before {
    background: rgba(248, 248, 248, 0.2);
}

.pageBtn a:hover::after {
    border-color: rgba(248, 248, 248, 0.2);
}

.pageBtn p {
    margin-top: 10px;
    font-size: 14px;
    color: #ddd;
}


  @media (max-width: 1280px){
    .pageTit {
    font-size: 28px;

    }
    
}
@media (max-width: 1024px){
        .pageTit {
        font-size: 24px;
    }
    .pageNan{
        height: auto;
    }
    .pageImg{
        padding-top: 80%;
        position: relative;
    }
    .pageImg img{
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }
}
@media (max-width: 768px){
   
}
@media (max-width: 680px){
    .pageImg {
        padding-top: 120%
    }
        .pageTit {
        font-size: 20px;
    }
     .pageText {
    font-size: 14px;
    margin: 10px 0 20px;
}
.pageBtn a {
    width: 52px;
    height: 52px;
}
}
@media (max-width: 500px){
        .pageText {
        font-size: 12px;
    }
     .pageImg {
        padding-top: 140%
    }
    .pageBtn a {
    width: 45px;
    height: 45px;
}
}






/*  */
 .FrameBg {
            background-color: rgba(0, 0, 0, 0.247);
            backdrop-filter: blur(50px);
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 99;
            display: none;
        }

        .FrameSbox {
            max-height: calc(100% - 16px);
            background-color: rgb(255, 255, 255);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            z-index: 100;
            position: fixed;
            top: 0px;
            right: 0px;
            border-radius: 4px;
            box-shadow: none;
            margin: 8px;
            height: 100%;
            will-change: opacity, width;
            outline: none !important;
            transition: 560ms cubic-bezier(0.31, 0, 0.13, 1) !important;
            width: 50vw !important;
            padding: 20px 30px;
            transform: translateX(110%);
        }

        .FrameSboxAct {
            transform: translateX(0);
        }

        .FrameSTop {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        }

        .FrameSGb {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .FrameSGb svg {
            width: 14px;
            height: 14px;
        }

        .FrameSGb svg path {
            fill: #333;
        }

        .FrameSGb span {
            font-size: 14px;
            font-weight: 400;
            margin-left: 5px;
        }

        .FrameSNav {
            display: flex;
            align-items: center;
        }

        .FrameSNItem {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            padding: 20px 0;
            margin-left: 30px;
        }

        .FrameSNItem::after {
            width: 0%;
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0;
            content: '';
            background: rgba(0, 0, 0, .5);
            transition: width .8s;
        }

        .FrameSNItem.on::after {
            width: 100%;
        }

        .FrameSCon {
            padding: 50px;
            position: relative;
            display: none;
        }

        .FrameSCon.FrameSConAct {
            display: block;
        }

        .FrameSInpBox {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.247);
        }

        .FrameSInpSs {
            width: 24px;
            height: 24px;
        }

        .FrameSInpSs svg {
            width: 100%;
            height: 100%;
        }

        .FrameSInpJt {
            width: 30px;
            height: 24px;
        }

        .FrameSInpJt svg {
            width: 100%;
            height: 100%;
        }

        .FrameSInpBox input {
            width: calc(100% - 70px);
            font-size: 14px;
            position: relative;
        }

        .FrameSText {
            position: relative;
            margin: 30px 0 50px;
        }

        .FrameSText span {
            font-size: 14px;
            color: #7B8487;
            padding: 5px 0;
            display: block;
        }

        .FrameSText p {
            font-size: 14px;
            padding: 5px 0;
            cursor: pointer;
        }

        .FrameSBon {
            position: relative;
        }

        .FrameSBon p {
            font-size: 18px;
            font-weight: 500;
        }

        .FrameSList {
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
            position: relative;
        }

        .FrameSItem {
            width: 25%;
            padding: 3px;
            position: relative;
        }

        .FrameSImg {
            width: 100%;
            padding-top: 100%;
            position: relative;
            overflow: hidden;
            background: #f7f8f9;
        }

        .FrameSImg img {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: contain;
        }

        .FrameSImg .img1 {
            opacity: 1;
        }

        .FrameSImg .img2 {
            opacity: 0;
        }

        .FrameSItem:hover .FrameSImg .img2 {
            opacity: 1;
        }

        .FrameSItem:hover .FrameSImg .img1 {
            opacity: 0;
        }

        .FrameShopList {
            height: calc(100vh - 300px);
            overflow-y: auto;
            position: relative;
        }

        .FrameShopItem {
            width: 100%;
            display: flex;
            justify-content: space-between;
            border: 1px solid rgba(0, 0, 0, 0.12);
            margin-bottom: 20px;
        }

        .FrameShopImg {
            width: 33.3%;
            position: relative;
            padding-top: 35%;
            background: #f7f8f9;
        }

        .FrameShopImg img {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: contain;
        }

        .FrameShopRig {
            box-sizing: border-box;
            width: 66.6667%;
            padding: 24px 48px;
            display: flex;
            flex-direction: column;
            -webkit-box-pack: center;
            justify-content: center;
        }

        .FrameShopBh {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .FrameShopText {
            color: #7B8487;
            font-size: 14px;
            margin: 5px 0;
        }

        .FrameShopBon {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .FrameShopSl {
            display: flex;
            align-items: center;
        }

        .FrameShopSl span {
            color: #7B8487;
        }

        .FrameShopSl p {
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7B8487;
        }

        .FrameShopSl input {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7B8487;
            text-align: center;
        }

        .FrameShopSc {
            color: #7B8487;
            position: relative;
            cursor: pointer;
        }

        .FrameShopSc::after {
            width: 100%;
            height: 1px;
            background: rgba(0, 0, 0, 0.62);
            position: absolute;
            bottom: 0;
            right: 0;
            content: '';
            transition: width 0.8s;
        }

        .FrameShopSc:hover::after {
            width: 0;
            left: 0;
        }

        .FrameSBtn {
            width: 100%;
            height: 55px;
            background: #33383c;
            color: #fff;
            border-radius: 6px;
            transition: background .5s;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
            margin-top: 10px;
        }

        .FrameSBtn span {
            font-size: 14px;
            color: #eee;
        }

        .FrameLikeItem {
            width: 100%;
            display: flex;
            justify-content: space-between;
            border: 1px solid rgba(0, 0, 0, 0.12);
            margin-bottom: 20px;
        }

        .FrameLikeImg {
            width: 25%;
            position: relative;
            padding-top: 25%;
            background: #f7f8f9;
        }

        .FrameLikeImg img {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: contain;
        }

        .FrameLikeRig {
            box-sizing: border-box;
            width: 75%;
            padding: 24px 48px;
            display: flex;
            flex-direction: column;
            -webkit-box-pack: center;
            justify-content: center;
        }

        .FrameShopText {
            color: #7B8487;
            font-size: 14px;
            margin: 5px 0;
        }

        .FrameLikeBt {
            font-size: 14px;
        }

        .FrameLikeText {
            color: #7B8487;
        }

        .FrameLikeNum {
            font-size: 20px;
            font-weight: 600;
            margin: 20px 0;
        }

        .FrameLikeBon {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .FrameLikeJg {
            color: #7B8487;
            position: relative;
            cursor: pointer;
        }

        .FrameLikeJg::after {
            width: 100%;
            height: 1px;
            background: rgba(0, 0, 0, 0.62);
            position: absolute;
            bottom: 0;
            right: 0;
            content: '';
            transition: width 0.8s;
        }

        .FrameLikeJg:hover::after {
            width: 0;
            left: 0;
        }

        .FrameLikeSc {
            color: #7B8487;
            position: relative;
            cursor: pointer;
        }

        .FrameLikeSc::after {
            width: 100%;
            height: 1px;
            background: rgba(0, 0, 0, 0.32);
            position: absolute;
            bottom: 0;
            right: 0;
            content: '';
            transition: width 0.8s;
        }

        .FrameLikeSc:hover::after {
            width: 0;
            left: 0;
        }
.FramePbox {
            max-height: calc(100% - 20px);
            background-color: rgb(255, 255, 255, .9);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            z-index: 100;
            position: fixed;
            top: 0px;
            left: 0px;
            border-radius: 4px;
            box-shadow: none;
            margin: 8px;
            height: 100%;
            will-change: opacity, width;
            outline: none !important;
            transition: 560ms cubic-bezier(0.31, 0, 0.13, 1) !important;
            padding: 10px;
            transform: translateX(-110%);
        }

        .FramePboxAct {
            transform: translateX(0%);
        }

        .FramePTop {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
            padding: 10px 0;
        }

        .FramePTbox {
            display: flex;
            height: 100%;
            position: relative;
        }

        .FramePLeft {
            width: 400px;
            padding: 10px 30px 10px 20px;
            position: relative;
        }

        .FramePCon {
            margin-top: 30px;
        }

        .FramePItem {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            transition: opacity 0.48s;
        }

        .FramePItem span {
            font-size: 16px;
            cursor: pointer;
        }

        .FramePItem svg {
            width: 15px;
            height: 15px;
        }

        .FramePRig {
            position: relative;
            width: 0;
            overflow: hidden;
            height: 100%;
            transition: 560ms cubic-bezier(0.31, 0, 0.13, 1) !important;
        }

        .FramePRigAct {
            width: 400px;
        }

        .FramePList {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            position: relative;
            display: none;
            transition: all 0.2s .2s;
        }

        .FramePListAct {
            display: block;
        }

        .FramePRItem {
            width: 100%;
            height: calc(50% - 10px);
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .FramePRImg {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .FramePRImg::after {
            width: 100%;
            height: 100%;
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .1) 75%, rgba(0, 0, 0, .5) 100%);
        }

        .FramePRItem img {
            width: 100%;
            height: 100%;
            position: relative;
            object-fit: cover;
        }

        .FramePRItem a {
            color: #fff;
            text-decoration: underline;
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 10px;
            width: 100%;
            text-align: center;
        }

        .FramePList {
            overflow: auto;
            /* 或者 overflow-y: auto; */
            -ms-overflow-style: none;
            /* IE 和 Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        /* 针对WebKit内核浏览器隐藏滚动条，但不完全移除滚动效果 */
        .FramePList::-webkit-scrollbar {
            display: none;
            /* Safari 和 Chrome */
        }

        .FramePItem.on {
            font-weight: 500;

        }

        .FramePNav {
            position: relative;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, .1);
        }

        .FramePNavItem {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            transition: opacity 0.48s;
            width: 100%;
            font-size: 16px;
            cursor: pointer;
            border-bottom: 1px solid rgba(0, 0, 0, .1);
            margin-bottom: 10px;
        }

        /* .FramePNavItem{
            padding: 10px 0;
            display: block;
            font-size: 16px;
            transition: opacity 0.48s;
        } */
        .FramePHy {
            width: 100%;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            position: sticky;
            left: 0;
            bottom: 0;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .FramePHyLeft {
            width: calc(100% - 90px);
        }

        .FramePHyLeft p {
            font-size: 14px;
        }

        .FramePHyLeft p svg {
            width: 12px;
            height: 12px;
            margin-right: 3px;
        }

        .FramePHyText span {
            font-size: 12px;
            color: #7B8487;
            margin-right: 5px;
        }

        .FramePHyBtn {
            font-size: 12px;
            position: relative;
        }

        .FramePHyBtn::after {
            width: 100%;
            height: 1px;
            background: rgba(0, 0, 0, .5);
            position: absolute;
            bottom: 0;
            right: 0;
            content: '';
            transition: width 0.8s;
        }

        .FramePHyBtn:hover::after {
            width: 0;
            left: 0;
        }


@media (max-width: 1024px){
.FramePbox{
    width: calc(100% - 16px);
}
.FramePTbox{
    width: 100%;
    flex-wrap: wrap;
}
.FramePLeft{
    width: 100%;
}
.FramePRig{
    width: 100%;
}

.FramePList{
    flex-wrap: wrap;
}
        .FramePListAct {
            display: flex;
        }
        .FramePRItem{
            width: calc(50% - 10px);
            margin: 0 5px;
            margin-bottom: 10px;
        }
        .FramePTbox{
            height: auto;
        }
        .FramePList{
            height: auto;
        }
        .FramePRItem{
            height: auto;
            padding-top: 65%;
            position: relative;
        }
        .FramePRImg{
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }
        .FramePRItem img{
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }
        .FramePRig{
            height: auto;
        }
          .FrameSbox {
        width: calc(100% - 16px) !important;
    }
    .FrameSNItem {
    padding: 10px 0;
    margin-left: 10px;
}
.FrameSCon {
    padding: 30px 0px
}
.FrameLikeRig,.FrameShopRig {
    padding: 20px 30px;
}
.FrameLikeNum {
    margin: 20px 0;
}
}   
@media (max-width: 500px){
    .FramePLeft{
        padding: 10px;
    }
    .FrameSbox{
        padding: 15px;
    }
    .FrameLikeNum {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}
    .FrameSItem {
    width: 33.3%;
}
.FrameLikeSc,.FrameLikeJg{
    font-size: 14px;
}
.FrameShopText{
    font-size: 12px;
}
}