/***************************************
此部分代码可以不需要,只作为演示使用,正式可不使用
****************************************/

.art_interact * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.art_interact {
    display: flex;
    align-items: center;
    justify-content: center;
}

/***************************************
这部分代码使用部分自定义文字字体和图标,需要注意字体文件的链接不可出错
****************************************/

@font-face {
    font-family: "webfont";
    font-weight: 400;
    src: url("../fonts/jcK19hT2liqz.woff2") format("woff2"),
        url("../fonts/jcK19hT2liqz.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: 'rss-icon';
    src:
        url('../fonts/iconfont.woff2?t=1716140849264') format('woff2'),
        url('../fonts/iconfont.woff?t=1716140849264') format('woff'),
        url('../fontsiconfont.ttf?t=1716140849264') format('truetype');
}


/***************************************
这部分代码是整体的按钮样式表,不建议修改
****************************************/

.rssy-assembly {
    padding: 30px 0;
}

.rssy-assembly .rssy-assembly-container {
    margin: 0;
    padding: 0;
}

.rssy-assembly .rssy-assembly-list {
    display: flex;
}

.rssy-assembly .rssy-assembly-link {
    display: block;
    width: 80px;
    height: 85px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #FF6D50;
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.rssy-assembly .rssy-assembly-link:last-child {
    margin-right: 0;
}

.rssy-assembly .rssy-assembly-link span {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 18px;
    font-family: "webfont";
    transform: translate(-50%, 8px);
    transition: 0.3s;
}

.rssy-assembly .rssy-assembly-link:hover span {
    transform: translate(-50%, 100px);
}

.rssy-assembly .rssy-assembly-link::before {
    font-family: "rss-icon";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 26px;
    margin-bottom: 10px;
    transform: translate(-50%, -24px);
    transition: 0.3s;
}

.rssy-assembly .rssy-assembly-link:hover::before {
    font-size: 34px;
    transform: translate(-50%, -50%);
}

.rssy-assembly .rssy-assembly-link:nth-child(1) {
    color: #7D427E;
    background: linear-gradient(180deg, #ffc0c0 0%, #FFFFFF 100%);
}

.rssy-assembly .rssy-assembly-link:nth-child(2) {
    color: #0F3C39;
    background: linear-gradient(180deg, #bbfaff 0%, #FFFFFF 100%);
}

.rssy-assembly .rssy-assembly-link:nth-child(3) {
    color: #7D561B;
    background: linear-gradient(180deg, #fdebac 0%, #FFFFFF 100%);
}

.rssy-assembly .rssy-assembly-link:nth-child(5) {
    color: #424E7E;
    background: linear-gradient(180deg, #b4c5ff 0%, #FFFFFF 100%);
}

.rssy-assembly .rssy-assembly-link:nth-child(4) {
    color: #264C43;
    background: linear-gradient(180deg, #aeffc5 0%, #FFFFFF 100%);
}

.rssy-assembly .rssy-assembly-link:nth-child(1)::before {
    content: "\e63e";
}

.rssy-assembly .rssy-assembly-link:nth-child(2)::before {
    content: "\e600";
}

.rssy-assembly .rssy-assembly-link:nth-child(3)::before {
    content: "\e6e6";
}

.rssy-assembly .rssy-assembly-link:nth-child(4)::before {
    content: "\e679";
}

.rssy-assembly .rssy-assembly-link:nth-child(5)::before {
    content: "\e6b6";
}

/***************************************
这部分代码是模态框通用的样式表,不建议修改
****************************************/

.rssy-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: #3A3536;
    background-color: rgba(0, 0, 0, 0.65);
}

.rssy-modal-content {
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rssy-modal-body {
    width: 375px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    overflow: hidden;
}

/***************************************
这部分代码是模态框通用的关闭按钮样式表,不建议修改
****************************************/

.rssy-close {
    display: block;
    margin-top: 15px;
    width: 50px;
    height: 50px;
    line-height: 45px;
    background-color: #FFFFFF;
    text-align: center;
    color: #AAAAAA;
    font-size: 34px;
    font-weight: bold;
    border-radius: 100%;
    transition: 0.3s;
}

.rssy-close:hover,
.rssy-close:focus {
    color: #F00;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}

/***************************************
这部分代码是表态模态框样式表,不建议修改
****************************************/

.rssy-statement {
    margin: 0;
}

.rssy-statement-title {
    font-size: 28px;
    margin: 20px 0 35px 0;
    text-align: center;
    font-family: "webfont";
}

.rssy-statement-statistics {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    background-color: #F2F4F9;
    padding: 10px 0;
    border-radius: 5px;
}

.rssy-statement-statistics span {
    color: #7e4242;
    font-weight: bold;
    margin: 0 5px;
}

.rssy-statement-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
}

.rssy-statement-list .rssy-statement-item {
    padding: 15px 10px 10px 10px;
    border-radius: 5px;
    width: 100%;
}

.rssy-statement-list .rssy-statement-item:hover {
    background-color: #F9F2F2;
}

.rssy-statement-list .rssy-statement-item .statement-btn {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777777;
}

.rssy-statement-list .rssy-statement-item:hover .statement-btn {
    color: #3A3536;
}

.rssy-statement-list .rssy-statement-item .rss-icon {
    margin-bottom: 10px;
    font-style: normal;
    font-size: 36px;
    transition: 0.3s;
}

.rssy-statement-list .rssy-statement-item:hover .rss-icon {
    transform: translateY(-5px);
}

.rssy-statement-list .rssy-statement-item .rss-icon::before {
    font-family: "rss-icon";
}

.rssy-statement-list .rssy-statement-item:nth-child(1) .rss-icon:before {
    content: "\e642";
}

.rssy-statement-list .rssy-statement-item:nth-child(2) .rss-icon:before {
    content: "\e644";
}

.rssy-statement-list .rssy-statement-item:nth-child(3) .rss-icon:before {
    content: "\e643";
}

.rssy-statement-list .rssy-statement-item:nth-child(4) .rss-icon:before {
    content: "\e645";
}

.rssy-statement-list .rssy-statement-item:nth-child(5) .rss-icon:before {
    content: "\e646";
}

.rssy-statement-list .rssy-statement-item span {
    margin-bottom: 10px;
    font-size: 16px;
    color: #3A3536;
}

.rssy-statement-list .rssy-statement-item em {
    font-style: normal;
    color: #777777;
    font-size: 12px;
    font-weight: bold;
}

.rssy-statement-list .rssy-statement-item:hover em {
    color: #B25A5A;
}

.rssy-statement-tips {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #7e4242;
    margin-top: 35px;
    background-color: #FFEEEE;
    border-radius: 5px;
}

/***************************************
这部分代码是 收藏 模态框样式表,不建议修改
****************************************/

.rssy-collect {
    margin: 0;
}

.rssy-collect-title {
    font-size: 28px;
    margin: 20px 0 35px 0;
    text-align: center;
    font-family: "webfont";
}

.rssy-collect-statistics {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    background-color: #F2F4F9;
    padding: 10px 0;
    border-radius: 5px;
}

.rssy-collect-statistics span {
    color: #09C7DF;
    font-weight: bold;
    margin: 0 5px;
}

.rssy-collect-not-logged-in {
    text-align: center;
    margin-bottom: 20px;
}

.rssy-collect-not-logged-in img {
    max-width: 150px;
    margin-bottom: 5px;
}

.rssy-collect-not-logged-in p {
    font-size: 14px;
}

.rssy-collect-not-logged-in a {
    margin: 0 5px;
    color: #509BFF;
    transition: 0.3s;
}

.rssy-collect-not-logged-in a:hover {
    color: #FF0000;
}

.rssy-collect-no {
    margin-bottom: 20px;
    text-align: center;
}

.rssy-collect-no img {
    max-width: 200px;
    margin-bottom: 20px;
}

.rssy-collect-no p {
    margin-bottom: 30px;
    font-size: 14px;
    color: #777777;
}

.rssy-collect-no a {
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #FFFFFF;
    background-color: #509BFF;
    border-radius: 5px;
    letter-spacing: 3px;
    transition: 0.3s;
}

.rssy-collect-no a:hover {
    opacity: 0.75;
}

.rssy-collect-yes {
    margin-bottom: 20px;
    text-align: center;
}

.rssy-collect-yes img {
    max-width: 200px;
    margin-bottom: 20px;
}

.rssy-collect-yes p {
    margin-bottom: 30px;
    font-size: 14px;
    color: #777777;
}

.rssy-collect-yes p a {
    color: #509BFF;
    font-weight: bold;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s;
}

.rssy-collect-yes p a:hover {
    color: #FF0000;
}

.rssy-collect-yes .collect-close {
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #FFFFFF;
    background-color: #FF6D50;
    border-radius: 5px;
    letter-spacing: 3px;
    transition: 0.3s;
}

.rssy-collect-yes .collect-close:hover {
    opacity: 0.75;
}

/***************************************
这部分代码是 打赏 模态框样式表,不建议修改
****************************************/

.rssy-reward {
    margin: 0;
}

.rssy-reward-title {
    font-size: 28px;
    margin: 20px 0 35px 0;
    text-align: center;
    font-family: "webfont";
}

.rssy-reward-nav {
    margin-bottom: 30px;
}

.rssy-reward-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rssy-reward-nav li {
    display: block;
    width: 125px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    list-style-type: none;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.rssy-reward-nav li:nth-child(1) {
    margin-right: 15px;
    border: 1px solid #2AAC38;
}

.rssy-reward-nav li:nth-child(2) {
    border: 1px solid #009FE8;
}

.rssy-reward-nav li .rss-icon {
    font-family: "rss-icon";
    font-style: normal;
    font-size: 28px;
}

.rssy-reward-nav li:nth-child(1) .rss-icon::before {
    content: "\e602";
}

.rssy-reward-nav li:nth-child(2) .rss-icon::before {
    content: "\e601";
}

.rssy-reward-nav li:nth-child(1).rssy-reward-selected {
    background-color: #e6ffe8;
}

.rssy-reward-nav li:nth-child(2).rssy-reward-selected {
    background-color: #dbf4ff;
}

.rssy-reward-nav li span {
    display: none;
}

.rssy-reward-content {
    text-align: center;
    margin-bottom: 20px;
}

.rssy-reward-content img {
    width: 220px;
}

.rssy-reward-content div {
    display: none
}

.rssy-reward-tips {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #3A3536;
    background-color: #F2F4F9;
    border-radius: 5px;
}

.rssy-reward-tips em {
    font-style: normal;
    font-weight: bold;
    color: #B25A5A;
    margin: 0 5px;
}

/***************************************
这部分代码是 分享 模态框样式表,不建议修改
****************************************/

.rssy-share {
    margin: 0;
}

.rssy-share-title {
    font-size: 28px;
    margin: 20px 0 35px 0;
    text-align: center;
    font-family: "webfont";
}

.rssy-share-tips {
    padding: 10px 0;
    background-color: #F2F4F9;
    margin-bottom: 35px;
    font-size: 14px;
    border-radius: 5px;
}

.rssy-share-tips i {
    font-family: "rss-icon";
    font-style: normal;
    margin: 0 5px;
    font-weight: bold;
}

.rssy-share-tips i:nth-child(1) {
    color: #09BB07;
}

.rssy-share-tips i:nth-child(2) {
    color: #0099FF;
}

.rssy-share-tips i:nth-child(3) {
    color: #E71F19;
}

.rssy-share-tips i:nth-child(1)::before {
    content: "\e665";
    margin-right: 3px;
    font-size: 22px;
}

.rssy-share-tips i:nth-child(2)::before {
    content: "\e6eb";
    margin-right: 3px;
    font-size: 22px;
}

.rssy-share-tips i:nth-child(3)::before {
    content: "\e666";
    margin-right: 3px;
    font-size: 22px;
}

.rssy-share-content {
    text-align: center;
}

.rssy-share-content img {
    margin: 0 auto 30px auto;
}


/***************************************
这部分代码是 版权 模态框样式表,不建议修改
****************************************/

.rssy-copyright {
    margin: 0;
}

.rssy-copyright-title {
    font-size: 28px;
    margin: 20px 0 35px 0;
    text-align: center;
    font-family: "webfont";
}

.rssy-copyright-content {
    margin: 0;
}

.rssy-copyright-content .information {
    display: flex;
    align-items: center;
    background-color: #FDEBAC;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.rssy-copyright-content .information .left {
    margin-right: 10px;
}

.rssy-copyright-content .information .left img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 3px solid #FFFFFF;
}

.rssy-copyright-content .information .right {
    display: flex;
    flex-direction: column;
}

.rssy-copyright-content .information .right span:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #866E19;
}

.rssy-copyright-content .information .right span:nth-child(2) {
    font-size: 14px;
    color: rgb(0 0 0 / 50%);
}

.rssy-copyright-content .statement {
    font-size: 14px;
    color: #777777;
    line-height: 1.8;
}

.rssy-copyright-content .statement p {
    margin-bottom: 10px;
}

.rssy-copyright-content .statement b {
    color: #424E7E;
}

.rssy-copyright-content .statement a {
    color: #FF6D50;
    margin: 0 5px;
    font-weight: bold;
}


@media (max-width: 600px){
    .rssy-assembly .rssy-assembly-link{
        width: 60px;
        height: 70px;
        padding: 12px;
    }
    .rssy-assembly .rssy-assembly-link span{
        font-size: 14px;
    }
    .rssy-assembly .rssy-assembly-link::before{
        font-size: 22px;
        transform: translate(-50%, -28px);
    }
}















