@charset "utf-8";
body {
    word-break: break-all;
    min-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 47px;
    color: #222;
    background-color: #fff;
    display: flex;
    box-shadow: 0 2px 40px 0 hsla(0, 0%, 91.8%, .5);
}

header .brand {
    position: absolute;
    left: 10px;
    top: -2px;
    width: 184px;
    height: 48px;
    background-size: 100% 100%;
    vertical-align: middle;
    background-image: url(../images/bz.png);
}

.subs-account__nologin {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.subs-account__nologin img {
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 50%;
}

.subs-account__nologin .subs-account__nologin-btn {
    padding: 0 4px;
    font-size: 14px;
    cursor: pointer;
	color: #ff328c;
	font-weight: 600;
}

.subs-account__nologin .subs-account__nologin-aplit {
    font-size: 14px;
	color: #f58365;
}

header .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 208px;
    font-size: 18px;
    letter-spacing: 1.5px;
    line-height: 47px;
    flex: 1;
}

header .menu .new-tag::after {
    content: 'NEW';
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    font-size: 16px;
    color: #fff;
    top: 1px;
    right: -18px;
    width: 48px;
    height: 28px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-border-radius: 14px 14px 14px 0;
    -moz-border-radius: 14px 14px 14px 0;
    border-radius: 14px 14px 14px 0;
    letter-spacing: 0;
    background-color: #ff328c;
}

header .menu a {
    position: relative;
    display: inline-block;
    padding: 0 14px 0 14px;
    font-weight: 500;
    text-align: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px;
    letter-spacing: 1.5px;
    line-height: 47px;
}

header .menu a:hover {
    font-weight: bold;
    color: #333;
	color:ff188a;
}

main {
    line-height: 1;
    display: block;
    min-height: 300px;
    margin-top: 47px;
}

/* 修改：轮播图容器改为固定高度 */
main .tuku {
	position: relative;
	display: flex;
	height: 417px; /* 固定高度 */
	width: 100%; /* 宽度自适应 */
}

main .tuku .swiper-container {
	height: 100%; /* 继承父容器高度 */
	width: 100%;
	overflow: hidden;
}

main .tuku .swiper-slide {
	width: 100%;
	height: 100%;
	display: block;
}

/* 修改：图片自适应处理 */
main .tuku .swiper-slide a img {
	width: 100%;
	height: 417px; /* 高度填充容器 */
	/*object-fit: cover;  保持比例，填充容器 */
	/*object-position: center;  居中显示 */
}

main .tuku .swiper-slide .cover {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center
}

main .tuku .swiper-slide .cover::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .1;
    content: ''
}

main .tuku .swiper-slide a {
    display: block;
    height: 100%;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background-position: center;
    -moz-background-size: cover;
    background-size: cover
}

main .tuku .icon-arrow {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    padding-left: 30px;
    -webkit-transform: scaleY(0.8);
    -moz-transform: scaleY(0.8);
    -ms-transform: scaleY(0.8);
    transform: scaleY(0.8);
    z-index: 2;
    text-align: left
}

main .tuku .icon-arrow::before {
    color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

main .tuku .icon-arrow:hover::before {
    opacity: 1
}

main .tuku .icon-arrow-prev {
    left: 0
}

main .tuku .icon-arrow-next {
    right: 0;
    -webkit-transform: rotate(180deg) scaleY(0.8);
    -moz-transform: rotate(180deg) scaleY(0.8);
    -ms-transform: rotate(180deg) scaleY(0.8);
    transform: rotate(180deg) scaleY(0.8)
}

main .tuku .swiper-slide-active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

main .tuku .swiper-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

main .tuku .content {
    position: absolute;
    left: 10%;
    width: 860px;
    z-index: 1;
}

main .tuku .content .tuku-title {
    margin-top: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

main .tuku .content .tuku-title .title-main {
    margin-right: 16px;
    height: 70px;
    line-height: 70px;
    font-size: 50px;
    font-weight: 700;
    color: #fff
}

main .tuku .content .tuku-title .title-adobe {
    padding: 8px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #ffefcb;
    font-size: 12px;
    line-height: 15px;
    color: #222;
    text-align: center
}

main .tuku .content .tuku-title .title-adobe p {
    font-weight: 600
}

main .tuku .content .tuku-desc {
    margin-top: 2px;
    height: 22px;
    line-height: 22px;
    font-size: 16px;
    color: #fff
}

main .tuku .content .tuku-search {
    margin-top: 60px;
    padding: 0 24px;
    height: 76px;
    width: 690px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .1);
    background-color: #fff
}

main .tuku .content .tuku-search .search-input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 24px;
    color: #222;
    height: 76px;
    line-height: 76px;
    border: 0;
    outline: 0
}

main .tuku .content .tuku-search .search-input::-webkit-input-placeholder {
    color: #ccc
}

main .tuku .content .tuku-search .search-input:-moz-placeholder {
    color: #ccc
}

main .tuku .content .tuku-search .search-input::-moz-placeholder {
    color: #ccc
}

main .tuku .content .tuku-search .search-input:-ms-input-placeholder {
    color: #ccc
}

main .tuku .content .tuku-search .search-input::placeholder {
    color: #ccc
}

main .tuku .content .tuku-search .search-input.english {
    font-size: 22px
}

main .tuku .content .tuku-search .search-icon {
    width: 28px;
    height: 28px;
    cursor: pointer;
    -moz-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/search.png');
	border:0px;
	background-color:#fff;
}

@media screen and (max-width: 1300px) {
    main .tuku .content .tuku-search {
        width: 502px
    }
}

main .tuku .content .tuku-keywords {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 24px;
    line-height: 20px;
    font-size: 14px;
    color: #fff
}

main .tuku .content .tuku-keywords .tuku-keywords-tip {
    font-weight: 500;
    line-height: 20px
}

main .tuku .content .tuku-keywords .tuku-keywords-item {
    margin-left: 12px;
    padding: 4px 12px;
    font-weight: 500;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: solid 1px rgba(255, 255, 255, .8);
    cursor: pointer;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    transition: background-color .3s
}

main .tuku .content .tuku-keywords .tuku-keywords-item:hover {
    background-color: rgba(255, 255, 255, .3)
}


/* 社区 */

main .community {
    position: relative;
    padding-top: 37px;
}

main .zhuanti {
    padding-top: 20px;
}

main .content {
    display: block;
    width: 1200px;
    margin: 0 auto;
}

main .title {
    display: block;
}

main .title .text {
    margin-left: -3px;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    vertical-align: middle;
}

main .community .contact {
    color: #fff;
    background-color: #ff328c;
}

main .title .contact {
    display: inline-block;
    margin-left: 5px;
    padding:10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    margin-top: 5px;
	font-weight: 500;
}

main .title .contact .enter {
    display: inline-block;
    width: 0;
    height: 0;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-align: left;
    vertical-align: middle;
    transition: width .3s;
    -moz-transition: width .3s;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
}

main .title .contact .enter-icon {
    display: inline-block;
    margin-top: 1px;
    width: 8px;
    height: 13px;
    background-image: url(../images/icon3.png);
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

main .intro {
    display: block;
    margin-top: 12px;
    font-size: 14px;
}

main .community .hot-menu {
    margin-top: 25px;
}

main .community .hot-menu a {
    font-size: 18px;
    letter-spacing: 2px;
    color: #838383;
    cursor: pointer;
}

.active {
    color: #222 !important;
    background: url(../images/icon5.jpg) no-repeat bottom center;
    background-size: 20px 4px;
    padding-bottom: 10px;
    font-weight: 600;
}

main .community .hot-menu .unactive {
    color: #838383;
}

main .community .hot-menu .hot-posts {
    margin-right: 80px;
}

main .community .hot-menu a {
    display: inline-block;
}

main .community .tabContent {
    margin: 15px 0 57px;
}

main .community .ztContent {
    margin: 15px 0 12px -15px;
}

main .community .events-list li {
    position: relative;
    display: inline-block;
    margin-left: 12px;
    margin-bottom: 28px;
    width: 390px;
    height: 274px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    background-position: center;
}

main .community .events-list li .item-mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    z-index: 10;
}

main .community .events-list li .event-pic {
    display: block;
    height: 222px;
    -moz-background-size:120%;
    background-size:120%;
    background-position: center;
	background-repeat:no-repeat;
	/*background-color: #333;*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #DCDCDC;
}

main .community .events-list li .item-desc {
    position: relative;
    margin-top: 10px;
}

main .community .events-list li .item-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    width: 79%;
    line-height: 22px;
}

main .community .events-list li .item-posts {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 14px;
    color: #000;
}

main .community .events-list li .item-posts .pic-icon {
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 14px;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    background-image: url(../images/icon1.png);
    vertical-align: bottom;
}

main .community .events-list li .item-award {
    padding: 7px 5px 0 0;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

main .community .events-list li .item-award i {
    display: inline-block;
    width: 12px;
    height: 13px;
    margin-right: 3px;
    margin-bottom: 4px;
    vertical-align: -6px;
    background-image: url(../images/icon2.png);
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

/*首页动态信息*/

.newscontainer {
    position: relative;
	width:1200px;
    align-items: center;
    margin: 0 auto; /* 水平居中 */
    padding-bottom:20px;
}
.news {
    width: 100%;
    padding-top:20px;
    border-top: double 3px #eee;
}

.news .news-title {
    width: 100%;
    display: flex;
    justify-content: space-between; /* 确保标题和按钮在同一行 */
	font-size:30px;
	font-weight: 600;
    margin-bottom:10px;
}

.news-content {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    width: 100%;
}

.carousel {
    flex: 0 0 auto; /* 防止.carousel伸缩 */
    margin-right: 20px;
}

.carousel img {
    width: 380px; /* 设置最大宽度 */
    height: 260px; /* 保持图片比例 */
    border-radius: 5px;
    border: solid 1px #ccc;
}

.news-text {
    flex: 1;
    display: flex;
    flex-direction: column; /* 使新闻文本垂直排列 */
    justify-content: center; /* 垂直居中对齐文本 */
}
.news-text .news-itemtitle {
	width:800px;
	font-size:46px;
	font-weight: 600;
    white-space: nowrap; /* 确保文本在一行内显示 */ 
	overflow: hidden; /* 隐藏超出容器的文本 */ 
	text-overflow: ellipsis; /* 不显*/ 
    color: #fc027c;
    margin-bottom: 20px;
}

.news-item .news-countview {
	font-size:18px;
    margin-bottom: 5px;
    line-height: 1.6;
    color: #4488db;
	font-weight: 600;
}

.news-item, .news-list {
    margin-bottom: 5px;
}

.news-list ul {
    list-style: none;
    padding: 0;
}

.news-list li {
    color: #333;
	font-size:16px;
    line-height: 1.8;
    padding-bottom:3px;
    border-bottom: solid 1px #f4f4f4;
}


/* 创作者 */

main .creator {
    padding: 0;
    margin-top: -138px;
}

main .creator .box {
    margin: 0 auto;
    width: 1200px;
    text-align: center;
    height: 160px;
    border: 1px solid #eee;
	border-radius:6px;
}

main .creator .box div {
    padding: 38px 0;
}

main .creator h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: 0em;
	font-weight: 600;
	text-shadow: 1px 1px 0 #666;
}

main .creator .box span {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0em;
    display: block;
	text-shadow: 1px 1px 0 #666;
}

.creator .content {
    width: 1200px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    min-height: calc(100vh - 400px);
    flex-shrink: 0;
    justify-content: space-between;
}

.creator .content .item {
    width: 47%;
    margin-bottom: 30px;
}

.creator .content .itemOne {
    width: 100%;
    cursor: pointer;
    height: 127px;
    display: flex;
    box-sizing: border-content;
    background-color: transparent;
}

.creator .content .itemOne .user {
    float: left;
    width: 245px;
    margin-top: 7px;
    display: flex;
    align-items: center;
}

.creator .content .itemOne .user img {
    float: left;
    width: 100px;
    border: 1px solid #eee;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
	box-shadow: 3px 3px 0px 3px rgba(0, 0, 0, .1)
}

.creator .content .itemOne .user .namearea {
    float: left;
    width: 105px;
    display: block;
    margin: 0 0 0 10px;
    text-align: left;
}

.creator .content .itemOne .user .namearea span {
    color: rgba(0, 0, 0, 0.87);
    width: 100%;
    display: block;
}

.creator .content .itemOne .user .namearea .spanleft {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.creator .content .itemOne .user .namearea .spanright {
    margin: 0;
    font-size: 13px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.creator .content .itemOne .user .namearea .spanright img {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    margin-left: -7px;
}

.creator .content .itemOne .works {
    flex: 1;
    float: left;
    height: 127px;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

.creator .content .itemOne .works span {
    width: 32%;
    display: inline-block;
    overflow: hidden;
}

.creator .content .itemOne .works span img {
    float: left;
    width: 100%;
    height: 118px;
    flex-grow: 1;
    max-height: 118px;
    object-fit: cover;
    border-radius: 5px;
}


/* 签约 */

main .contribute {
    display: block;
    position: relative;
    height: 401px;
    padding-top: 73px;
    background-image: url('../images/qyback.png');
    -moz-background-size: cover;
    background-size: cover;
    color: #fff;
}

main .contribute .contact {
    color: #fff;
    background-color: #d1b200;
}

main .contribute .intro {
    margin-top: 13px;
}

main .contribute .contri-info {
    margin-top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1.3;
}

main .contribute .contri-info .contri-item:first-of-type {
    margin: 0;
}

main .contribute .contri-info .contri-item {
    position: relative;
    display: inline-block;
    margin-left: 44px;
    width: 268px;
    height: 208px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: solid 3px rgba(151, 151, 151, .2);
    vertical-align: middle;
    text-align: center;
}

main .contribute .contri-info .contri1 {
    display: inline-block;
    margin-top: 44px;
    width: 68px;
    height: 69px;
    background-image: url('../images/ic1.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

main .contribute .contri-info .contri-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

main .contribute .contri-info .contri2 {
    display: inline-block;
    margin-top: 38px;
    width: 67px;
    height: 89px;
    background-image: url('../images/ic2.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

main .contribute .contri-info .contri3 {
    display: inline-block;
    margin-top: 48px;
    width: 68px;
    height: 67px;
    background-image: url('../images/ic3.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

main .contribute .contri-info .contri4 {
    display: inline-block;
    margin-top: 37px;
    width: 72px;
    height: 72px;
    background-image: url('../images/ic4.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}


/* 合作品牌 */

main .partner {
    padding-top: 31px;
    color: #000;
    text-align: center;
}

main .partner .line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #979797;
    opacity: .75;
}

main .partner .part-title {
    margin: 0 20px;
    font-size: 40px;
    font-weight: 600;
    vertical-align: middle;
    line-height: 1;
}

main .partner .second-title {
    margin: 10px auto;
    font-size: 18px;
    line-height: 1;
}

main .partner .brand-list {
    margin: 19px 120px 35px;
    border: 1px solid #E7E7E7;
}

main .partner .brand-list li {
    display: inline-block;
    width: 128px;
    height: 69px;
    margin:8px;
	padding-right:20px;
    border-right: 1px solid #f5f5f5;
}
main .partner .brand-list li:last-child {    
    border: none;  
     }

main .partner .brand-list a {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}


/* 底部 */

footer {
    display: inline-block;
    width: 88%;
    padding: 30px 6% 14px;
    color: #222;
    font-size: 12px;
    background-color: #fafafa;
}

.fl {
    float: left;
}

footer .fluid-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

footer .underline {
    display: inline-block;
    margin-top: 8px;
    width: 20px;
    height: 6px;
    background-color: #000;
}

footer .tuchong-desc {
    margin-right: 70px;
    line-height: 1.29;
}

footer .fluid-content {
    margin-top: 5px;
    max-width: 381px;
    color: #828282;
    font-size: 14px;
}

footer .slash-list {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.slash-list .slash-item {
    display: inline-block;
}

.slash-item i {
    font-style: normal;
}

.slash-list .slash-item:first-child:before {
    content: '';
    margin: 0;
}

footer .slash-list .slash-item:before {
    content: '|';
    color: #85888a;
    text-decoration: none;
}

footer .footer-left {
    margin-top: 10px;
    color: #aeaeae;
}

.footer-left div a {
    color: #aeaeae;
    font-size: 12px;
}

footer .footer-left .police-icon {
    width: 20px;
    height: 20px;
    vertical-align: -5px;
    margin-right: 5px;
}

.slash-list .slash-item:before {
    content: '/';
    color: #E0E0E0;
    font-size: 12px;
    margin: 0 5px;
}

footer .text-right {
    text-align: right;
}

.fr {
    float: right;
}

footer .fluid-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

footer .brand-icons {
    text-align: right;
}

footer .fluid-content {
    margin-top: 5px;
    max-width: 763px;
    color: #828282;
    font-size: 14px;
}

footer .douyin {
    position: relative;
}

footer .mb15 {
    margin-bottom: 15px;
}

footer .douyin .douyin-word {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    display: inline-block;
    margin-right: 12px;
}

footer .douyin .douyin-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('../images/dy.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

footer .douyin .douyin-code {
    display: none;
    position: absolute;
    top: -90px;
    left: -87px;
    width: 152px;
    height: 142px;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    background-image: url('../images/bg.png');
}

footer .douyin .douyin-code .arrow {
    position: absolute;
    right: 31px;
    top: 19px;
    width: 100px;
    height: 100px;
    background-image: url('../images/ewm.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
}

footer .tuchong {
    position: relative;
}

footer .tuchong .tuchong-icon {
    display: inline-block;
    margin-right: 12px;
    width: 56px;
    height: 16px;
    background-image: url('../images/logo2.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

footer .weixin-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url('../images/wx.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

footer .weili {
    position: relative;
}

footer .weili .weili-icon {
    display: inline-block;
    margin-right: 12px;
    width: 104px;
    height: 19px;
    background-image: url('../images/logo3.png');
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    vertical-align: middle;
}

footer .qrcode {
    width: 100px;
    height: 100px;
    display: inline-block;
    vertical-align: middle;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    margin-right: 10px;
}

footer .download {
    margin-right: 140px;
}

footer .download-name {
    margin: 10px 0 15px;
    font-size: 14px;
    letter-spacing: 3.5px;
}


/* 作品分类 */

.layout-content {
    position: relative;
    z-index: 2;
    padding: 5px 0;
}

.layout-content .common-search {
    width: 800px;
    margin: 20px auto -0 auto;
    display: flex;
    align-items: center;
    height: 68px;
    background: hsla(0, 0%, 100%, .92);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .06);
    border-radius: 20px;
    border: 1px solid #e6e6e6;
}

.layout-content .common-search .left {
    padding-left: 40px;
    position: relative;
}

.layout-content .common-search .left .item1 {
    margin-right: 14px;
    color: #222;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.layout-content .common-search .left .item2 {
    position: absolute;
    top: 47px;
    width: 135px;
    text-align: center;
    left: 0;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    overflow: hidden;
    display: none;
    padding: 6px 0;
}

.layout-content .common-search .left .item2 p {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #1f2937;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    padding: 0 20px;
    cursor: pointer;
}

.selected {
    color: #ff328c !important;
}

.layout-content .center {
    left: 130px;
    width: 1px;
    height: 24px;
    margin: 0 20px;
}

.layout-content .common-search .left .item1 img {
    width: 9px;
    height: 9px;
    display: block;
    padding-left: 10px;
}

.layout-content .common-search .right {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 30px;
}

.layout-content .common-search .right input {
    height: 68px;
    border: none;
    color: #222;
    font-size: 18px;
    line-height: 25px;
    border-radius: 20px;
    background: 0;
    flex: 1;
    margin-right: 6px;
}

.layout-content .common-search .right img {
    display: block;
    width: 26px;
    height: 24px;
    margin-left: 15px;
}

 ::-webkit-input-placeholder {
    color: rgba(34, 34, 34, .3);
    font-size: 18px;
}

.trending-keywords {
    margin-top: 16px;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 28px;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

.trending-keywords .label {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 20px;
}

.trending-keywords .item {
	width:auto;
    margin-left: 16px;
    padding: 4px 12px;
    background-color: #dce3eb;
    border-radius: 8px;
    transition: background-color .3s ease-out, color .3s ease-out;
    cursor: pointer;
}

.section-entries {
    display: flex;
    justify-content: center;
    margin: 60px auto 0;
}

.section-entries>a {
    position: relative;
    width: 288px;
    border: 1px solid #fff;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    transition: box-shadow .3s ease-out;
    cursor: pointer;
    display: block;
}

.section-entries .entry-item .background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50%;
    background-size: cover;
    opacity: .2;
    transition: opacity .3s ease-out;
}

.section-entries .entry-item .entry-item-content {
    position: relative;
    z-index: 1;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 212px;
}

.section-entries .entry-item-content img {
    display: block;
    width: 180px;
    height: 180px;
    margin-left: 15px;
    color: #4a4a4a;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.section-entries .entry-item .title-cn {
    width: 1em;
    margin-right: 6px;
    margin-left: 26px;
    color: #4a4a4a;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    transition: color .3s ease-out;
}

.section-entries .entry-item+.entry-item {
    margin-left: 80px;
}

.section-entries .entry-item .title-en {
    color: rgba(34, 34, 34, .1);
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    transition: color .3s ease-out;
}

.picContent {}

.picContent .topBox {
    display: flex;
    align-items: center;
    margin: 60px 60px 0 60px;
}

.picContent .left {
    flex: 1;
    font-size: 16px;
    color: #1f2937;
}

.picContent .right {
    display: flex;
    align-items: center;
}

.picContent .high label {
    color: #ff328c !important;
}

.picContent .right div label {
    color: #1f2937;
    cursor: pointer;
    font-size: 14px;
}

.picContent .right div span {
    padding: 0 4px;
    font-size: 14px;
}

.box2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .3);
    left: 0;
    height: 100%;
    align-items: center;
    display: block;
    margin-left: 0;
    display: none;
	border-radius: 5px;
}

.box2 .picBox {
    position: absolute;
    bottom: 10px;
    z-index: 3;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    width: 92%;
    margin: 0 4%;
}

.box2 span {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
    line-height: 20px;
    width: 70% !important;
    width: 200px;
    /* 限制容器宽度 */
    display: -webkit-box;
    /* 设置为WebKit内核的弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 2;
    /* 限制显示两行 */
    overflow: hidden;
    /* 隐藏超出范围的内容 */
    text-overflow: ellipsis;
    /* 使用省略号 */
	
}

.box2 span a {
	color: #fff;
}

.box2 .picBox p {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.box2 p img {
    display: block;
    margin-left: 6px;
    width: 20px;
    height: 20px;
}

.box2>img {
    position: absolute !important;
    right: 0;
    right: 4%;
    top: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    max-width: initial !important;
}


/* 瀑布流 */

#waterfall {
    column-count: 4;
    /* 列数 */
    column-gap: 10px;
    /* 列间距 */
    list-style: none;
    /* 去除列表样式 */
    margin: 20px 60px;
    padding: 0;
}

#waterfall li {
    /* 列表项内联显示 */
    width: 100%;
    /* 列表项宽度占满列 */
    margin-bottom: 10px;
    /* 列表项底部间距 */
    position: relative;
    cursor: pointer;
    float: left;
}

#waterfall li>img {
    width: 100%;
    /* 图片宽度占满列表项 */
    height: auto;
    /* 根据宽度自动计算高度 */
    box-shadow: 0 0 0px #ccc;
    border-radius: 5px;
    position: relative;
}


/* 登录注册弹窗 */

.dialog-account {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 999;
    display: none;
}

.dialog-account .content {
    position: relative;
    display: flex;
    height: 532px;
    margin: auto;
    background-color: #fff;
    border-radius: 4px;
    width: 930px;
    top: 10%;
}

.dialog-account .account__image {
    width: 500px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.account-password {
    position: relative;
    height: 100%;
    padding: 50px 50px 32px;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.account-password__modes {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
}

.codeactive {
    color: #2c2f36 !important;
}

.account-password__mode-item {
    margin-right: 24px;
    font-size: 18px;
    font-weight: 500;
    color: #a2a2a2;
    cursor: pointer;
}

.account-password__form-item {
    position: relative;
    height: 50px;
}

.account-password__form-input {
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #dfe6e5;
    font-size: 15px;
}

.account-password__form-item+.account-password__form-item {
    margin-top: 24px;
}

.account-password__form-input:focus {
    border-bottom: 1px solid #ff188a !important;
}

.account-password__form-item {
    position: relative;
    height: 50px;
}

.captcha-button.disabled {
    color: #585858;
    cursor: auto;
    cursor: not-allowed;
}

.account-password__captcha {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    cursor: pointer;
    background: 0;
    border: 0;
}

/*#login-btn{*/
/*    margin-top: 32px;*/
/*    flex: 50px 0 0;*/
/*    border: none;*/
/*    color: #fff;*/
/*    background: linear-gradient(270deg, #d4d4d4, #aaaaaa);*/
/*    height: 40px;*/
/*    padding: 0 14px;*/
/*    font-size: 16px;*/
/*    border-radius: 6px;*/
/*	width:100%;*/
/*    cursor: not-allowed;*/
/*    pointer-events: none; /* 禁止点击事件 */*/
/*}*/


#login-btn.enabled{
    margin-top: 32px;
    flex: 50px 0 0;
    border: none;
    color: #fff;
    background: linear-gradient(270deg, #f58365, #ff188a);
    height: 40px;
    padding: 0 14px;
    font-size: 16px;
    border-radius: 6px;
	width:100%;
    cursor: pointer;
    pointer-events: auto; /* 恢复点击事件 */
}

.account-password__button {
    margin-top: 32px;
    flex: 50px 0 0;
    border: none;
    color: #fff;
    background: linear-gradient(270deg, #f58365, #ff188a);
    height: 40px;
    padding: 0 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
	width:100%;
}

.account-password__other-type-tip {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.account-password__other-type-tip:after,
.account-password__other-type-tip:before {
    content: "";
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background-color: #e8eaee;
}

.account-password__other-type-tip span {
    color: #a2a2a2;
}

.account-password__other-type-item {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
}

.account-password__other-type-item img {
    width: 36px;
    height: 36px;
}

.account-password__login-tip {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #a2a2a2;
    text-align: center;
}

.account-password__login-tip a {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #a2a2a2;
    text-align: center;
}

.content .dialog-account__form {
    width: 434px;
    height: 100%;
}

.account-form {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 4px;
}

.dialog-account .dialog-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
    /*background: url(../images/close.jpg) no-repeat;
    background-size: 100% 100%;*/
    cursor: pointer;
}

.account-password__form-input::-webkit-input-placeholder {
    color: #a2a2a2 !important;
    font-size: 13px !important;
}

#passShow {
    display: none;
}


/* 列表页分页 */

.bodyBg {
    background: #efefef;
}

.pagination {
    display: flex;
    align-items: center;
    margin: 60px auto 30px auto;
    justify-content: center;
}

.pagination .left {
    color: #606266;
    font-size: 13px;
}

.pagination .center {
    display: flex;
    align-items: center;
    margin: 0 15px;
    width: auto;
}

.pagination .center button {
    width: 80px;
    background-color: #fff !important;
    border: 1px solid #C6CBD4 !important;
    line-height: 28px;
    font-size: 13px;
}

.pagination button:disabled {
    color: #C0C4CC;
    background-color: #FFF;
    cursor: not-allowed !important;
}

.pagination .center .nextBtn {
    color: #606266;
}

.pagination .center ul {
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0 2px;
}

.pagination .center ul li {
    margin: 0 2px;
    background-color: #fff;
    color: #606266;
    min-width: 30px;
    border-radius: 2px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.pagination .center ul .numActive {
    background-color: #ff328c;
    color: #fff;
}

.pagination .right {
    position: relative;
}

.pagination .right span {
    font-size: 13px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    color: #606266;
    background-color: #fff !important;
    border: 1px solid #C6CBD4 !important;
    padding: 0 15px;
    width: auto;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.pagination .right span img {
    width: 9px;
    height: 9px;
    display: block;
    padding-left: 10px;
}

.pagination .right ul {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    width: 100%;
    display: none;
    margin-top: 3px;
    border-radius: 5px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .1);
}

.pagination .right ul .liactive {
    background: #F9F1F1;
    color: #ff328c;
}

.pagination .right ul li {
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
}


/* 详情页面 */

.zpDetails {
    margin: 0 !important;
    height: 274px;
    overflow: hidden;
    display: flex;
}

.zpDetails li {
    height: 274px !important;
    width: 100%;
}

.ulDetails {
    margin: 0 !important;
    column-count: 4 !important;
}

main .community .ztDetails {
    margin: 0 !important;
}

.sectionOne {
    display: flex;
    width: 1200px;
    margin: 87px auto 10px auto;
}

.sectionOne .left {
    width: 684px;
    flex: 1;
}

.sectionOne .left .itemOne {
    height: 680px;
    width: 684px;
    background: #000;
	border-radius: 5px;
}

.sectionOne .left .itemOne div {
    /* width: 100%;
height: 100%;
background-position: 50%;
background-size: contain;
background-repeat: no-repeat;
background: url(../images/bannerd.jpeg) no-repeat top center;
background-size: 100%; */
}

.sectionOne .left .itemTwo .ulparent {
    /* display: flex; */
    gap: 20px;
    margin-top: 18px;
    position: relative;
}

.sectionOne .left .itemTwo {
    display: flex;
    margin: 15px 15px 15px 0px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.sectionOne .left .itemTwo .ulparent li {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 130px;
    height: 42px;
    line-height: 22px;
    background-color: #edf2f5;
    border-radius: 21px;
    cursor: pointer;
    margin: 10px;
}

.sectionOne .left .itemTwo .ulparent .parentHigh {
    background-color: #fd2866;
}

.sectionOne .left .itemTwo .ulparent .parentHigh span {
    color: #fff;
}

.sectionOne .left .itemTwo .ulparent li img {
    width: 22px;
    height: 22px;
    margin-right: 4px;
}

.sectionOne .left .itemTwo .ulparent li span {
    color: #4a4a4a;
    font-size: 16px;
}

.sectionOne .hidecontent {
    width: 70%;
    margin: 20px 40px;
}

.sectionOne .hidecontent .ulchild {
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    height: 48px;
    margin-bottom: 8px;
    line-height: 48px;
	width:480px;
}

.sectionOne .hidecontent .ulchild li {
    color: #666;
    cursor: pointer;
    font-size: 14px;
}


/* .sectionOne .hidecontent .ulchild li:hover {
    color: #fd2866;
    border-bottom: 2px solid #fd2866;
} */

.sectionOne .hidecontent .ulchild .liHigh {
    color: #fd2866;
    border-bottom: 2px solid #fd2866;
}

.sectionOne .hidecontent .childContent {width:515px;}

.sectionOne .hidecontent .childContent .childtop {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    padding: 5px 0;
    margin-bottom: 4px;
}

.sectionOne .hidecontent .childContent .childtop p {
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.sectionOne .hidecontent .childContent .childtop p img {
    margin-right: 4px;
    width: 15px;
    height: 15px;
}

.sectionOne .hidecontent .childContent .childtop dd {
    display: flex;
    gap: 16px;
}

.sectionOne .hidecontent .childContent .childtop dd span {
    font-size: 14px;
    line-height: 22px;
    height: 22px;
    color: #999;
    cursor: pointer;
}

.sectionOne .hidecontent .childContent .childtop dd span:hover {
    color: #fd2866;
}

.sectionOne .closeBtn img {
    display: block;
    margin: 0 auto;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.sectionOne .hidecontent .childContent .childbottom p {
    height: 26px;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    cursor: pointer;
    align-items: center;
}

.childbottom:first-child {
    display: block;
}

.childbottom {
    display: none;
}

.sectionOne .hidecontent .childContent .childbottom p img {
    width: 15px;
    height: 15px;
}

.sectionOne .hidecontent .childContent .childbottom p span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    margin-left: 4px;
    color: #666;
}

.sectionOne .hidecontent .childContent .childbottom p .fonthui {
    color: #b8b8b8;
}

.sectionOne .right {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    width: 500px;
}

.sectionOne .right .title {
    color: #222;
    font-size: 18px;
    word-break: break-all;
    font-weight: bold;
}

.sectionOne .right .itemOne {
    padding: 11px 16px;
    border: 1px solid #e7e7e7;
    background-color: #fff;
    border-radius: 4px;
}

.sectionOne .right .itemOne ul {}

.sectionOne .right .itemOne ul li {
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.sectionOne .right .itemOne ul li span {
    width: 7em;
    height: 30px;
    margin-right: 14px;
    color: #7b7f81;
    line-height: 30px;
    overflow: hidden;
    font-size: 14px;
}

.sectionOne .right .itemOne ul li div {
    color: #222;
    line-height: 30px;
    flex: 1;
    font-size: 14px;
}

.sectionOne .redcolor {
    color: #e30951 !important;
}

.fontUnder {
    text-decoration: underline;
    cursor: pointer;
}

.sectionOne .right .itemTwo {
    padding: 0 15px 10px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
}

.sectionOne .right .itemTwo .top {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
}

.sectionOne .right .itemTwo .top dd {
    color: #000;
    font-weight: 500;
    font-size: 14px
}

.sectionOne .right .itemTwo .top p {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #222;
    font-size: 14px;
    cursor: pointer;
}

.sectionOne .right .itemTwo .top p span {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    color: #fff;
    font-weight: bolder;
    font-size: 12px;
    text-align: center;
    background: #999;
    border-radius: 50%;
}

.sectionOne .right .itemTwo .bottom {}

.sectionOne .right .itemTwo .bottom .dactive {
    background-color: #f5f5f5;
}

.sectionOne .right .itemTwo .bottom>div {
    display: flex;
    gap: 12px;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    padding: 0 12px;
    border-radius: 4px;
    cursor: pointer;
}

.sectionOne .right .itemTwo .bottom>div label:before {
    border: 2px solid #000;
    border-radius: 50%;
    top: 0;
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.sectionOne .right .itemTwo .bottom>div .is-checked:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.sectionOne .right .itemTwo .bottom>div label:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 3px;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    transition-duration: .28s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    border-radius: 50%;
    background: linear-gradient(270deg, #f58365, #ff188a);
    cursor: pointer;
}

.sectionOne .right .itemTwo .bottom>div label {
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    margin-right:5px;
    padding-left:5px;
    font-size: 14px;
}

.sectionOne .right .itemTwo .bottom>div label input {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.sectionOne .right .itemTwo .bottom>div .widthOne {
    flex: 1;
    margin-right: auto;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sectionOne .right .itemTwo .bottom>div .widthTwo {
    width: 50px;
}

.sectionOne .right .itemTwo .bottom>div .widthThree {
    width: 80px;
}

.sectionOne .right .itemTwo .bottom>div .widthFour {
    width: 160px;
}

.ui-radio.circle.colorful:after {
    background: linear-gradient(270deg, #f58365, #ff188a);
}

.sectionOne .right .itemTwo .bottom>div .item {
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    width: 87%;
}

.sectionOne .right .itemTwo .bottom>div .item span {
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    flex: 1;
}

.sectionOne .right .itemThree {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 5px;
}

.sectionOne .right .itemThree .boxOne {
    color: #fff;
    background-color: #fd2866;
    cursor: pointer;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    font-weight: bolder;
    font-size: 16px;
    border-radius: 6px;
}

.sectionOne .right .itemThree .boxOne img {
    width: 18px;
    height: 20px;
}

.sectionOne .right .itemThree .boxTwo {
    position: relative;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 42px;
    border: 1px solid #fd2866;
    color: #fd2866;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.sectionOne .right .itemThree .boxTwo img {
    width: 15px;
    height: 20px;
}

.sectionOne .right .itemThree .boxThree {
    position: relative;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 42px;
	color: #fff;
    border: 1px solid #fd2866;
	background-color: #fd2866;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.sectionOne .right .itemThree .boxThree img {
    width: 23px;
    height: 23px;
}

.sectionOne .right .itemThree .boxFour {
    position: relative;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 42px;
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.sectionOne .right .itemThree .boxFour img {
    width: 23px;
    height: 23px;
}


.detailkeywords {
    width: 1200px;
    margin: 0 auto;
}

.detailkeywords .keywords__header {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
}

.detailkeywords .keywords__header-text {
    margin-right: auto;
    font-weight: 600;
    font-size: 16px;
}

.detailkeywords .keywords__header-link {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
}

.keywords__header-link img {
    width: 9px;
    height: 9px;
    margin-left: 3px;
}

.keywords__items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    -ms-flex-align: center;
    align-items: center;
    max-height: 54px;
    overflow: hidden;
}

.keywords__items a {
    padding: 0 14px;
    color: #6d6d6d;
    line-height: 24px;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.zp {
    margin-top: 40px;
}

.swiper-container {
    width: 100%;
    height: 685px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 40px 0 hsla(0, 0%, 91.8%, .5);
}

.gallery-top .swiper-slide {
    display: block;
    width: 100%;
    min-height: 685px;
    line-height: 685px;
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

.gallery-top .swiper-slide img {
    max-width: 100%;
    max-height: 685px;
    position: relative;
    width: auto;
    display: block;
    vertical-align: middle;
    margin: 0 auto;
}

.gallery-thumbs .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-thumbs .swiper-slide img {
    width: auto;
    height: 85px;
	border-radius: 5px;
}

.gallery-top {
    height: 85%;
    width: 100%;
	border-radius: 5px;
	padding:0;
}

.gallery-thumbs {
    height: 15%;
    box-sizing: border-box;
    padding: 10px 0;
	border-radius: 5px
}

.gallery-thumbs .swiper-slide {
    width: auto;
    height: 100%;
    opacity: 0.4;
	border-radius: 5px;
	
}

.gallery-thumbs .swiper-slide-active {
    opacity: 1;
}


/*个人中心页面 */

.accountsBox {
    width: 1200px;
    margin: 70px auto 0 auto;
}

.account__nav {
    display: flex;
    margin: 15px auto 0;
    box-shadow: inset 0 -1px 0 0 #dfe6e5;

}

.account__nav a{
	font-size: 16px;
}

.account__nav span {
    margin-left: 26px;
    color: #7b7f81;
    font-size: 16px;
    line-height: 48px;
    cursor: pointer;
    position: relative;
}

.account__nav span:first-child {
    margin-left: 0;
}

.account__nav .navactive {
    border-bottom: 2px solid #ff328c;
    color: #ff328c;
    font-weight: 600;
    font-size: 16px;
}

.new:after {
    content: "NEW";
    position: absolute;
    top: -8px;
    right: -18px;
    padding: 2px 4px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    text-shadow: none;
    background-color: #fe346e;
    border-radius: 8px;
}

.zuixin:after {
    content: " 最 新 ";
    position: absolute;
    top: -5px;
    right: -23px;
    padding: 3px 8px 3px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 8px;
    line-height: 13px;
    text-shadow: none;
    background-color: #fe346e;
    border-radius:10px;
}

.newfuwu:after {
    content: " 服 务 ";
    position: absolute;
    top: -5px;
    right: -23px;
    padding: 3px 8px 3px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 8px;
    line-height: 13px;
    text-shadow: none;
    background-color: #fe346e;
    border-radius:10px;
}

.newchuangzuo:after {
    content: " 个 人 ";
    position: absolute;
    top: -5px;
    right: -23px;
    padding: 3px 8px 3px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 8px;
    line-height: 13px;
    text-shadow: none;
    background-color: #fe346e;
    border-radius:10px;
}

.newzuixin:after {
    content: " 专 属 ";
    position: absolute;
    top: -5px;
    right: -23px;
    padding: 3px 8px 3px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 8px;
    line-height: 13px;
    text-shadow: none;
    background-color: #fe346e;
    border-radius:10px;
}


/* 我的账户 */

.accoutBox {
    width: 1150px;
    margin: 20px 0 48px;
    display: none;
}

.accoutBox .itemOne {
    width: 100%;
    margin-bottom: 32px;
    padding: 0 24px;
    border: 1px solid #ddd;
}

.accoutBox .title {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #ccc;
}

.accoutBox .title p {
    color: #222;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.accoutBox .title div {
    display: flex;
    align-items: center;
}

.accoutBox .title div span {
    color: #222;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
}

.accoutBox .title div i {
    width: 1px;
    height: 14px;
    margin: 0 16px;
    background-color: #ccc;
}

.accoutBox .itemOne .boxOne ul li:nth-of-type(3n+1) {
    width: 23%;
    margin-right: auto;
}

.accoutBox .itemOne .boxOne ul li:nth-of-type(3n+2) {
    width: 20%;
    margin-right: auto;
}

.accoutBox .itemOne .boxOne ul li:nth-of-type(3n+0) {
    width: 30%;
    margin-right: auto;
}

.accoutBox .itemOne .boxOne ul {
    gap: 6px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.accoutBox .itemOne .boxOne ul li {
    height: 34px;
    display: flex;
    align-items: center;
}

.accoutBox .itemOne .boxOne ul li label {
    width: 4em;
    color: #7b7f81;
    font-size: 14px;
    line-height: 14px;
    text-align: justify;
}

.accoutBox .itemOne .boxOne ul li span {
    margin-left: 24px;
    color: #222;
    font-size: 14px;
    line-height: 34px;
}

/* 新增.boxTwo类，实现每行左边标题右边内容的布局 */
.accoutBox .itemOne .Activity {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 24px; /* 行间距和列间距 */
    margin: 20px 0;
}

.accoutBox .itemOne .Activity label {
    color: #222;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    text-align: justify;
    text-align-last: justify; /* 确保文本两端对齐 */
}

.accoutBox .itemOne .Activity span {
    color: #7b7f81;
    font-size: 14px;
    line-height: 34px;
    word-break: break-all; /* 允许长单词换行 */
}

.accoutBox .itemTwo {
    width: 100%;
    margin-bottom: 32px;
    padding: 0 24px;
    border: 1px solid #ddd;
}

.accoutBox .itemTwo .boxOne {
    min-height: 200px;
    margin-top: 32px;
    padding-bottom: 20px;
}

.accoutBox .itemTwo .boxOne .item {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
}

.accoutBox .itemTwo .boxOne .item span {
    color: #222;
    font-weight: 500;
}

.accoutBox .itemTwo .boxOne .item p {
    color: #666;
}


/* 订单管理  */

.orderNav {
    align-items: center;
    display: flex;
    margin: 0 0 15px;
}

.orderNav li:first-child {
    margin-left: 0;
}

.orderNav li {
    margin: 0 16px;
    color: #666;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
}

.orderNav .orderActive {
    color: #222;
    border-bottom: 2px solid #fd2866;
    font-weight: 700;
}

.orderContent {}

.orderContent .top {
    /*display: flex;*/
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    min-height: 25px;
    margin-bottom: 12px;
    color: #666;
    font-size: 12px;
    line-height: 17px;
}

.orderContent .top p {
    color: #666;
    font-size: 12px;
    line-height: 17px;
	float:left;
}

.orderContent .top p span {
    color: #fd2866;
    margin: 0 5px;
}

.orderContent>div {
    display: none;
}

.orderContent .top button {
    color: #fd2866;
    border: 1px solid #fd2866;
    padding-bottom: 3px;
    font-size: 12px;
    line-height: 17px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    padding: 5px 10px;
	margin:5px;
}

.orderContent .bottom table {
    width: 1200px;
	top:10px;
    border-bottom: 1px solid #e6e6e6;
}

.orderContent .bottom table thead tr {
    background-color: #fafafa;
    height: 46px;
     /*display: flex;*/
    align-items: center;
    padding-left: 10px;
    text-align: center;
}

.orderContent .bottom .tablewidth {
    width: 990px;
}

.orderContent .bottom table thead tr th {
    /*flex: 1;*/
    font-weight: bold;
    color: #222;
    font-size: 14px;
}

.orderContent .bottom table tbody tr {
    height: 68px;
     /*display: flex;*/
    align-items: center;
    text-align: center;
    padding-left: 10px;
	border-bottom: 1px solid #f3f3f3;
}

.orderContent .bottom table tbody tr td {
    /*flex: 1;*/
    color: #7b7f81;
    font-size: 14px;
}

.orderContent .bottom table tbody tr td input {
    margin-right: 5px;
    cursor: pointer;
}

.orderContent .bottom table tbody tr td a {
    margin: 0 5px;
    color: #fd2866;
    border: 1px solid #fd2866;
    padding-bottom: 3px;
    font-size: 12px;
    line-height: 17px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    padding: 5px 10px;
	margin:5px;
}

.orderContent .bottom table tbody tr td select {
    color: #7b7f81;
    border: 0;
}

.orderContent .bottom .nodate {
    line-height: 60px;
    color: #909399;
    text-align: center;
    margin: 0 auto;
    height: 60px;
}

#scjPage>div {
    display: none;
}

.orderContent .bottom .no-credit {
    padding: 40px;
    text-align: center;
}

.orderContent .bottom .no-credit p {
    color: rgba(75, 75, 75, .664);
    font-size: 14px;
}

.orderContent .bottom .no-credit button {
    color: #fff;
    border: 1px solid #fd2866;
    background: #fd2866;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}


/* 收藏夹 */

.scjContent {
    display: flex;
}

.scjContent>.left {
    width: 180px;
    min-width: 180px;
    border: 1px solid #f4f4f4;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 40px 0 hsla(0, 0%, 91.8%, .5);
    height: 290px;
    float: left;
}

.scjContent>.left .leftTop {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    margin: 10px;
    border: 1px solid #f4f4f4;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.scjContent>.left .leftTop input {
    flex: 1;
    width: 100%;
    padding-left: 10px;
    border: none;
    background: rgba(0, 0, 0, 0);
    outline: none;
    font-size: 14px;
    color: #333;
}

.scjContent>.left .leftTop img {
    margin: 0 4px;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.scjContent>.left ul {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
}

.scjContent>.left ul li {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    padding: 0 10px;
    color: #222;
    font-size: 14px;
    line-height: 42px;
    cursor: pointer;
}

.scjContent>.left ul .listLi {
    color: #fd2866;
    font-weight: 600;
    background-color: #ffeaea;
}

.scjContent>.left ul .listLi span {
    color: #fd2866;
    font-weight: 600;
}

.scjContent>.left ul li span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #222;
    font-size: 14px;
    line-height: 42px;
    flex: 1;
    cursor: pointer;
}

.scjContent>.left ul li i {
    font-weight: 600;
    font-size: 16px;
    color: #c4c4c4;
    margin-top: -9px;
}

.scjContent>.left ul .listLi i {
    color: #fd2866;
}

.scjContent>.left .leftTop input::-webkit-input-placeholder {
    font-size: 14px;
    color: #666;
}

.scjContent>.rights {
    display: inline-block;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 18px;
    padding-bottom: 40px;
}

.scjContent>.rights .ulTab {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.scjContent>.rights>div {
    display: none;
}

.scjContent>.rights .ulTab li :not(:first-child) {
    margin-left: 12px;
}

.scjContent>.rights .ulTab li {
    display: flex;
    height: 28px;
    padding: 0 12px;
    color: #666;
    line-height: 28px;
    cursor: pointer;
    font-size: 14px;
}

.scjContent>.rights .ulTab .suActive {
    color: #fd2866;
    font-weight: 600;
    background-color: #ffeaea;
    border-radius: 6px;
}

.scjContent>.rights .rightContent {
    width: 1000px;
}

.scjContent>.rights .rightContent .item:nth-child(3n) {
    margin-right: 0;
}

.scjContent>.rights .rightContent .item {
    width: 325px;
    height: 220px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.scjContent .rights .rightContent .item>img {
    width: 100%;
    height: 220px;
    border-radius: 5px;
}

.xjscBox {
    display: none;
}

.scBox>div {
    display: block !important;
}

.scBox .bottom table tbody tr {
    height: auto;
    min-height: 46px;
    padding: 5px 40px;
}

.jfBox .bottom table tbody tr {
    padding: 0 0 0 40px;
}

.thimg {
    padding: 0 19px 0 73px;
}

.tdimg {
    margin: 0 20px;
}

.scBox .bottom table tbody tr td {
    display: flex;
    align-items: center;
}

.scBox .bottom table tbody tr td img {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    margin: 0 3px;
    display: inline-block;
}

.rightContent .no-data {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 400px;
    color: #999;
}

.rightContent .no-data img {
    width: 212px;
    height: 132px;
    margin-bottom: 8px;
}

.rightContent .no-data p {
    color: #999;
    font-size: 14px;
}


/* 优惠券 */

.couponNav {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    border: 1px solid #eee;
    background-color: #fff;
    overflow: hidden;
}

.couponNav li {
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
}

.couponNav .couponActive {
    background-color: #eee;
    color: #222;
    font-weight: 500;
}

.couponContent>div {
    display: none;
}

.couponContent {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 10px;
    font-size: 0;
}

.couponContent .coupon {
    margin-top: 10px;
    margin-right: 49px;
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
    width: 367px;
    height: 110px;
    border: 1px solid #e8e8e8;
    background-color: #fdfdfd;
    border-radius: 4px;
}

.yhjHui .coupon__left {
    color: #999;
}

.yhjHui .coupon__right .coupon__btn {
    background: #eee;
    color: #999;
}

.coupon__left {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    height: 85px;
    margin: 0 10px;
    color: #ef336c;
    text-align: center;
}

.coupon__left .coupon__money {
    font-family: DIN Alternate, Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
    white-space: nowrap;
}

.coupon__left .coupon__money i {
    font-weight: 700;
    font-size: 24px;
    font-style: normal;
}

.coupon__dots {
    display: inline-block;
    height: 100%;
    margin-right: 15px;
    height: 111px;
}

.coupon__dots img {
    width: 14px;
    height: 111px;
}

.coupon__right {
    flex: 1;
    padding-right: 20px;
}

.coupon__right .coupon__name {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    color: #222;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.coupon__right .coupon__title {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.coupon__right .coupon__btn {
    padding: 3px 3px 3px 5px;
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    background: #fd2866;
    border-radius: 4px;
}

.coupon__right .coupon__tags {
    margin: 6px 0 12px;
}

.coupon__right .coupon__tags .coupon__tag {
    padding: 0 4px;
    color: #ef336c;
    font-size: 12px;
    line-height: 17px;
    background-color: #fff6f4;
}

.coupon__right .coupon__duration {
    color: #999;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: .2px;
}

.coupon:nth-child(3n) {
    margin-right: 0;
}

.coupon-none {
    width: 1200px;
    height: 300px;
    padding-top: 50px;
    text-align: center;
}

.coupon-none img {
    margin: 0 auto 15px auto;
}

.coupon-none span {
    color: #666;
    font-size: 16px;
    letter-spacing: 1.1px;
    display: block;
}


/* 我的积分 */

.jfTop {
    position: relative;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding: 50px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    background-image: url(../images/jfBg.png);
    background-size: 100% 100%;
}

.jfTop .points-number {
    padding-right: 24px;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 40px;
    /*background: url(../images/jfjt.svg) no-repeat 24px center;*/
    background-size: 24px 24px;
	color: #fff;
}

.points-amount {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.points-star {
    margin-right: 2px;
    background-image: url(../images/start.svg);
    background-size: 100%;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

.points-instructions {
    display: inline-block;
}

.point-rule-description {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 102px;
    height: 34px;
    border-radius: 25px;
    cursor: pointer;
}

.points-detail-title {
    margin: 10px 0;
    color: #222;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
}

.jfBottom {
    margin-top: 40px;
}

.points-doods-item:hover {
    box-shadow: 0 6px 18px 0 rgba(0, 0, 0, .08);
}

.point-goods-list {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px 20px;
    min-height: 200px;
}

.points-doods-item {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    width: 285px;
    height: 359px;
    background-color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

.points-doods-item .doods-item-image {
    border-radius: 20px 20px 0 0;
    width: 285px;
    height: 285px;
}

.points-doods-item .doods-item-image .image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
}

.points-doods-item .doods-item-name {
    width: 100%;
    margin: 12px 0 4px;
    padding: 0 10px;
    color: #222;
    font-family: PingFang SC;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
}

.points-amount {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.points-amount img {
    width: 14px;
    height: 14px;
    margin-right: 2px;
}

.points-amount span {
    color: #fff;
    font-size: 13px;
}

.point-exchanged-main {
    display: flex;
}

.point-exchanged-main .point-exchanged-menu {
    width: 177px;
    height: fit-content;
    border: 1px solid hsla(0, 0%, 86.7%, .5019607843137255);
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.point-exchanged-main .point-exchanged-menu li {
    height: 42px;
    padding: 0 24px;
    font-size: 14px;
    line-height: 42px;
    cursor: pointer;
}

.point-exchanged-main .point-exchanged-menu .is-active {
    color: #fd2866;
    background-color: #ffeaf0;
}

.point-exchanged-content {
    flex: 1;
    margin-left: 25px;
}

.point-exchanged-content .el-empty {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    padding: 40px 0;
}

.point-exchanged-content .el-empty img {
    width: 200px;
    vertical-align: top;
}

.point-exchanged-content .el-empty p {
    color: #9e9ea7;
    font-size: 14px;
    line-height: 20px;
}


/* 修改密码弹窗 */

.weili-dialog__mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: rgba(0, 0, 0, .3);
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    display: none;
}

.weili-dialog__wrapper {
    position: absolute;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    width: 390px;
    left: 0;
    right: 0;
    top: 20%;
}

.weili-dialog__wrapper__B {
    padding: 10px;
    background: #fff;
    border-radius: 8px;
	width:360px;
}

.weili-dialog__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    color: #000;
    font-size: 30px;
    background-color: #fff;
    border-radius: 18px;
    cursor: pointer;
}

.weili-dialog__close i {
    color: #666;
    font-weight: 600;
    font-size: 25px;
    font-style: normal;
}

.pass__modes {
    display: flex;
}

.pass__modes li {
    margin-right: 20px;
    color: #222;
    font-size: 16px;
    line-height: 28px;
    cursor: pointer;
}

.pass__modes .passActive {
    font-weight: bold;
    font-size: 18px;
}

.pass__item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    margin-top: 30px;
    padding: 0 20px;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
}

.pass__item .pass__item-label {
    width: 80px;
    color: #000;
    font-size: 16px;
}

.captcha-button {
    color: #e30951;
    cursor: pointer;
    font-size: 14px;
}

.pass__item input::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
}

.pass__item input {
    flex: 1;
    height: 100%;
    border: none;
    font-size: 16px;
    outline: none;
}

.pass__btns {
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
}

.pass__btns button {
    width: 188px;
    height: 52px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #666;
    text-align: center;
}

.pass__btns .corfimBtn {
    background-color: #fd2866;
    border-color: #fd2866;
    color: #fff;
    margin-left: 10px;
}


/* 已购素材 */

.gmContent {
    margin-bottom: 32px;
}

.gmContent .item_one {
    display: flex;
    align-items: center;
    height: 32px;
}

.gmContent .item_one .scStyle {
    margin-left: 0;
    min-width: 56px;
    margin-right: 8px;
    color: #222;
    font-weight: 600;
    font-size: 14px;
}

.gmContent .item_one .radioBox {
    display: flex;
    align-items: center;
}

.gmContent .item_one .radioBox label {
    color: #333;
    font-size: 14px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gmContent .radioBox label .select {
    width: 14px;
    height: 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: relative;
}

.gmContent .radioBox .selectActive span:first-child {
    border-color: #fd2866;
}

.gmContent .radioBox .selectActive span:first-child:after {
    width: 10px;
    height: 10px;
    background-image: linear-gradient(270deg, #f58365 -9.67%, #ff188a 98.16%);
    transform: translate(-50%, -50%) scale(1);
    border-radius: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
}

.gmContent .radioBox .img {
    width: 16px;
    height: 16px;
}

.gmContent .radioBox .radio__label {
    font-size: 14px;
    padding-left: 10px;
}

.item_two {
    margin-top: 20px;
}

.gmContent .item_two .boxOne {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    margin-bottom: 20px;
}

.gmContent .item_two .boxOne span {
    min-width: 56px;
    margin-right: 8px;
    margin-left: 20px;
    color: #222;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.gmContent .item_two .boxOne span:first-child {
    margin-left: 0;
}

.gmContent .boxOne .dateBox {
    width: 270px !important;
}

.gmContent .item_two .boxOne div {
    width: 390px;
    height: 30px;
    border: 1px solid #dcdfe6;
    line-height: 40px;
    outline: none;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.gmContent .item_two .boxOne select {
    width: 198px;
    height: 30px;
    border: 1px solid #dcdfe6;
    line-height: 40px;
    outline: none;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.gmContent .item_two .boxOne img {
    width: 14px;
    height: 14px;
    display: block;
}

.gmContent .item_two .boxOne input {
    padding-left: 7px;
    border: 0;
    background: 0;
    font-size: 14px;
    color: #333;
    line-height: 30px;
}

.gmContent .item_two .boxOne input::-webkit-input-placeholder {
    font-size: 14px !important;
    color: #999;
}

.gmContent .item_two div p {
    border: 0;
    background: 0;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    width: 100%;
    position: relative;
    background: url(../images/jt.png) no-repeat right -10px center;
    background-size: 29px 21px;
    cursor: pointer;
}

.gmContent .item_two div {
    position: relative;
}

.gmContent .item_two div ul {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    top: 34px;
    border-radius: 5px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    overflow: hidden;
    padding: 6px 0;
    display: none;
}

.gmContent .item_two div ul li {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    cursor: pointer;
}

.gmContent .item_two div ul li:hover {
    color: #fd2866;
}

.gmContent .item_two div ul .gmhigh {
    color: #fd2866;
    font-weight: 600;
}

.resetBtn {
    display: inline-block;
    margin: 0 30px;
    cursor: pointer;
    color: #666;
    background: 0;
    border-radius: 50px;
    width: 144px;
    font-size: 14px;
    line-height: 32px;
    border: 1px solid #dcdfe6;
    height: 32px;
}

.gmContent .item_two .dateBox input {
    width: 40%;
}

.gmContent .item_two .dateBox span {
    flex: 1;
    width: 20px;
    min-width: auto;
    margin: 0;
    text-align: center;
}

.gmContent .downRecordBtn {
    border-radius: 50px;
    width: 144px;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    background: #fd2866;
    border: 1px solid #fd2866;
    height: 32px;
}

.gmContent .gmnodate {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 246px;
    border: 1px solid #f8f8f8;
}

.gmContent .gmnodate img {
    width: 120px;
}

.gmContent .gmnodate p {
    margin-top: 12px;
    color: #ccc;
    font-size: 14px;
    line-height: 1;
}

.gmContent .gmnodate a {
    width: 100px;
    margin-top: 24px;
    border: 1px solid #fd2866;
    color: #fd2866;
    font-weight: 500;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    opacity: .8;
    cursor: pointer;
}


/* 创作者首页 */

.fontColor {
    color: #ff328c;
}

.page-artist__header {
    position: relative;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 315px;
    overflow: hidden;
    background-size: 0;
}

.page-artist__header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.page-artist {
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page-artist__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
	border: 1px solid #eee;
}

.page-artist__name {
    margin-top: 14px;
    color: #fff;
    font-weight: bolder;
    font-size: 24px;
}

.page-artist__content {
    margin-top: 14px;
    color: #fff;
    font-weight: normal;
    font-size: 15px;
}

.page-artist__content .contenttxet {
	padding: 0px 60px 0px 60px ;
	line-height: 20px;
}


.page-artist__switch {
    display: flex;
    margin: 25px auto 10px auto;
}

.wcactive {
    font-weight: bold;
}

.page-artist__switch-item.wcactive:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background-color: #fff;
    border-radius: 50%;
}

.page-artist__switch-item {
    position: relative;
    margin: 0 8px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.page-artist__search {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 500px;
    height: 48px;
    margin-top: 14px;
    padding: 0 14px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .1);
}

.page-artist__search-input {
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    border: none;
    font-size: 18px;
    outline: none;
}

.page-artist__search .search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    -moz-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/search.png');
	border:0px;
	background-color:#fff;
}

.page-type .ulType {
    position: relative;
    display: flex;
    max-height: 60px;
    padding: 20px 60px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .12);
}

.page-type .ulType li {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 200px;
    font-size: 14px;
    cursor: pointer;
}

.page-type .ulType li img {
    margin-left: 5px;
    display: block;
}

.page-type .typecontent {
    max-height: 500px;
    z-index: 5;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    padding: 20px 30px;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    display: none;
}

.page-type .typecontent ul {
    display: flex;
}

.page-type .typecontent ul li {
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: baseline;
    align-items: baseline;
    max-width: 200px;
    cursor: pointer;
}

.marginBox {
    margin-top: 0 !important;
}

.page-type .typecontent ul li span {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
    min-height: 20px;
    margin-bottom: 10px;
    padding: 0 30px;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.typecontent ul li span:hover {
    color: #9e0030;
}

.page-type .colorBox {
    width: 164px;
    max-height: 74px;
    padding: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -4px 6px;
}

.page-type .colorBox span {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin: 0 4px 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 2px;
    cursor: pointer;
    padding: 0 !important;
}

.page-type .colorBox span i {}

/*2024.11.9新增*/
.Images-Overlay {
    position: absolute;
    top: 10px; /* 距离顶部3px */
    padding: 5px 10px; /* 根据需要调整内边距 */
    border-radius: 10px; /* 圆角 */
    color: #fff; /* 文字颜色 */
    font-size: 12px; /* 文字大小 */
    font-weight: bold; /* 文字加粗 */
    text-align: center; /* 文字居中 */
}

.Images-right {
    right: 10px; /* 距离右边3px */
    background-color: rgba(0, 51, 255, 0.3); /* 50%透明度的蓝色背景 */
}

.Images-left {
    left: 10px; /* 距离左边3px */
    background-color: rgba(255, 255, 255, 0.3); /* 50%透明度的白色背景 */
}