

.zoom-img {
    cursor: zoom-in;
    max-width: 100%;
}
.img-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 10px;
    box-sizing: border-box;
}
.img-fullscreen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.kefu-widget-container {
    position: fixed;
    right: .5rem;
    bottom: 15rem;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.kefu-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a6cf7 0%, #6b8cff 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.4);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.kefu-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 108, 247, 0.6);
}

.kefu-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.kefu-chat-window {
    width: 100vw;
    height: 100vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.kefu-chat-window.open {
    display: flex;
}

.kefu-chat-header {
    background: linear-gradient(135deg, #4a6cf7 0%, #6b8cff 100%);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kefu-chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.kefu-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kefu-status {
    font-size: 12px;
    opacity: 0.8;
}

.kefu-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;

}

.kefu-message {
    display: flex;
    margin-bottom: 12px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.kefu-message.visitor {
    justify-content: flex-end;
}

.kefu-message.agent {
    justify-content: flex-start;
}

.kefu-message.system {
    justify-content: center;
}

.kefu-message-content {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.kefu-message.visitor .kefu-message-content {
    background: #4a6cf7;
    color: white;
    border-bottom-right-radius: 6px;
}

.kefu-message.agent .kefu-message-content {
    background: white;
    color: #333;
    border: 1px solid #e9ecef;
    border-bottom-left-radius: 6px;
}

.kefu-message.system .kefu-message-content {
    background: transparent;
    color: #999;
    font-size: 12px;
    padding: 4px 8px;
}

.kefu-message-time {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

.kefu-input-container {
    padding: 12px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}
.kefu-image-btn{
    font-size: 2rem;
}
.kefu-emoji-btn .kefu-image-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #666;
}

.kefu-emoji-btn:hover {
    color: #4a6cf7;
}
.kefu-image-input {
    display: none;
}
.kefu-image-preview {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.kefu-image-preview img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.kefu-image-preview-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kefu-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.kefu-input:focus {
    border-color: #4a6cf7;
}

.kefu-send-btn {
    background: #4a6cf7;
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.kefu-send-btn:hover {
    background: #3a5af5;
}

.kefu-emoji-panel {
    position: absolute;
    bottom: 60px;
    left: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    display: none;
}

.kefu-emoji-panel.show {
    display: grid;
}

.kefu-emoji-item {
    font-size: 20px;
    padding: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.kefu-emoji-item:hover {
    background: #f0f0f0;
}

.kefu-typing {
    color: #999;
    font-size: 12px;
    padding: 4px 14px;
    font-style: italic;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}
.kefu-message-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.kefu-message-image:hover {
    transform: scale(1.02);
}
/* 遮罩层 */
.mask-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#kefu_qr{
    font-size: 1.3rem;
}
/* 弹窗主体 */
.popup-box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    min-width: 300px;
    max-width: 90%;
}
/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #666;
    cursor: pointer;
    user-select: none;
}
.close-btn:hover {
    color: #f00;
}
.popup-content {
    margin-top: 10px;
}

.lottery-scroll-body{
    margin-top: -1.8rem;
}
.lottery-scroll {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    margin: 20px auto;
    position: relative;
}
.lottery-scroll__list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.lottery-scroll__item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}
.lottery-scroll__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff6b6b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.lottery-scroll__info { flex: 1; }
.lottery-scroll__name { font-weight: 500; }
.lottery-scroll__prize { color: #ff6b6b; font-size: 16px; }
.lottery-scroll__time { color: #999; font-size: 12px; }

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.lottery-scroll--animate .lottery-scroll__list {
    animation: scrollUp 50s linear infinite;
}
.lottery-scroll--animate .lottery-scroll__list:hover {
    animation-play-state: paused;
}

.head_top{ width:100%; height:70px;}
@media (max-width: 360px) {
    body {
        font-size: 12px; /* 默认大小 */
    }
    .head_top{ width:100%; height:0;}
}
@media (max-width:495px) {

    .head_top{ width:100%; height:50px;}
}


@media (min-width: 360px) and (max-width: 399px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 400px) and (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 999px) {
    body {
        font-size: 18px;
    }
}
.no6{ float:left;width: calc(100% - 62px);height:58px;}
.wind-lou {background-color:#2077f8;border-radius:3px;padding:2px 1px 2px 4px;margin-left:0px;}
.wind-jin {background:linear-gradient(#ff0000, #d20047);border-radius:4px;padding:5px 5px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);}
.wind-ceng {background:linear-gradient(#3986f9,#0653c6);border-radius:4px;padding:5px 5px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);}
.wind-author,.wind-author a{margin-left:px;overflow: hidden;border:0px solid #000;}
.wind-info{padding:3px 0px 3px 0px;margin:0 5px 0 5px;}
.yo{float: right;padding-right: 0px;}
@media (max-width: 795px) {
    .wind-info {
        padding: 3px 0px 3px 0px;
        overflow: hidden;
        border-bottom: 1px dashed #ccc;
        margin: 0 3px;
    }
}
@media (max-width: 795px) {
    .wind-lou {
        font-size: 13px;
        color: #ff0;
        background: linear-gradient(#3986f9, #0653c6);
        border-radius: 4px;
        padding: 1px 3px;
        margin-left: 10px;
        box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);
        border: 1px solid #053e94;
    }
}
@media (max-width: 795px) {
    .wind-jin {
        font-size: 13px;
        color: #ff0;
        background: linear-gradient(#ff0000, #d20047);
        border-radius: 4px;
        padding: 1px 3px;
        margin-left: 10px;
        box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);
        border: 1px solid #cc0045;
    }
}
@media (min-width: 795px) {
    .width-max {
        display: none;
    }
    .no6 {
        float: left;
        width: calc(100% - 53px);
        height: 50px;
    }
    .wind-info{padding:3px 0px 3px 0px;overflow: hidden;border-bottom: 1px dashed #ccc;margin:0 3px;}
    .wind-lou {font-size:13px;color:#ff0;background:linear-gradient(#3986f9,#0653c6);border-radius:4px;padding:1px 3px;margin-left:10px;box-shadow:inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);border:1px solid #053e94;}
    .wind-jin {font-size:13px;color:#ff0;background:linear-gradient(#ff0000,#d20047);border-radius:4px;padding:1px 3px;margin-left:10px;box-shadow:inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);border:1px solid #cc0045;}
    .wind-author,.wind-author a{margin-left:5px;font-size: 14px;}
    .yo{float:right;padding-right:2px;}
}
.forumimg img{
    height: 58px;
    float: left;
    border-radius:10px;
    border: 1px solid #c5dbec;
}

.hxx1 {
    margin: 0 auto;
    background: #1783fc;
    text-align: left;
    height: 40px;
    font-size: 16px;
    color: #fff;
    /* border: 1px solid #ddd; */
    padding: 2px 0.5em 0;
    line-height: 40px;
}

@media screen and (max-width: 1030px) {
    .hxx1 {
        font-size: 18px;
    }
}

@media screen and (min-width: 300px) and (max-width: 320px) {
    .hxx1 {
        font-size: 13px;
    }
}

@media screen and (min-width: 321px) and (max-width: 360px) {
    .hxx1 {
        font-size: 14px;
    }
}
@media screen and (min-width: 361px) and (max-width: 480px) {
    .hxx1 {
        font-size: 16px;
    }
}
.red{color:#ff0000;}/*红*/


.blockquote {width:100%;zoom: 1;padding: 5px 8px 5px;line-height: 1.3;border: 1px dashed #eda85f;background: #fff7dd;color: #000; margin:15px 0px;}
.blockbuyer{ width: 100%;  zoom: 1; padding: 5px 8px 5px;line-height: 1.3; border: 1px dashed #333; background: #d9edf7; color: #333; margin: 0px 0px;}
.buyquote {
    position: relative;
    border: 2px dashed #3e73fe;
    background: #3e73fe4f;
    font-size: 14px;
    padding: 15px 5px;
    border-radius: 20px;
    line-height: 13px;
    text-align:center;
}
.buyquote .tx_buy {position:absolute;margin-top:-35px;background:#f00;border:1px #9D0E0E solid;border-top-color:#FE6767; border-left-color:#FE6767;border-radius:5px;color:#fff;padding:3px 7px;margin-left:-120px;}
.buyquote .tx_cz {position:absolute;margin-top:-35px;background:#085FC0;border:1px #054287 solid;border-top-color:#1783FC; border-left-color:#1783FC;border-radius:5px;color:#fff;padding:3px 7px;margin-left:-40px;}
.buyquote .tx_buy:hover,  .buyquote .tx_cz:hover {text-decoration:none;}
.buynamequote {width:67%;border:1px dashed #eda85f;background:#FEFBF0;font-size:1.3rem;padding:2px 5px;margin:5px 10px;line-height:20px;}
.quote{width:99%;}
.buytit {height:40px;line-height:40px;font-size:1.3rem;}
.block-img{background:#fff7dd url(images/attention.png) 8px 6px no-repeat;padding-left:28px;margin:0 15px 10px;}
.blockquote2{border: 1px solid; border-color: #c0c0c0 #ededed #ededed #c0c0c0;margin:0px;padding:0 0 0 2em;line-height:2em;overflow:hidden;background:#fff}
.blockquote2 ol{margin:0 0 0 1.5em;padding:0;}
.blockquote2 ol li{border-left:1px solid #ccc;background:#f7f7f7;padding-left:10px;font-size:12px;font-family:"Courier New" serif;list-style-type:decimal-leading-zero;padding-right:1em;}
.blockquote2 ol li:hover{background:#fff;color:#008ef1;}
.blockquote2 ol li{list-style-type:decimal;}
.y-style {background:#fff;}
.watermark{font-size: 20px;color:#000;font-weight: bold;transform: rotate(-20deg);position:absolute; z-index: 100; pointer-events:none; filter: alpha(opacity=9); -moz-opacity: 0.3;opacity: 0.3;}
.sb{top:20%;left:5%;}
.zb{top:50%;left:5%;}
.xb{bottom:30%;left:5%;}
.fb-head{width:calc(56% - 0px);float:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.fb-headt{line-height:25px;}
.fr{float:right}
.fl{float:left}
.totkl{height: 40px;padding:3px 6px 2px 6px;background: linear-gradient(#e69900,#ffcc66);border:1px solid #FF9933;border-radius:5px;color:#CC0000;font-size:14px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);}
.totkl:hover{background: linear-gradient(#ffcc66, #e69900);text-decoration:none;color:#cc0000;}
.ts{text-shadow:0px 0px 1px #fff,0px 0px 2px #fff,0px 0px 3px #fff,0px 0px 4px #fff;}

/***************************************************************************/
.toptool,.waptop,.midy,.h {border-bottom:1px solid #19664c;}
.popoutContent{border:7px solid #19664c;}
.sx,.sho-win{border:1px solid #19664c;}
.fb-1,.fb-2,.fb-3,.fb-4,.fb-5 {background: linear-gradient(to top,#19664c,#1e7b5c,#238f6b,#28a47a,#2db889);}
.toptool,.waptop,.midy,.scroll,.h {background: linear-gradient(to bottom,#8c6527,#a0732c,#b48132,#c89037,#cd9b4b);}
.tr3 td,.tr3 th,.tt10{border-bottom:1px solid #2db889;}
.toptool li .int {background-color:#19664c;border:#19664c;}
a.register-button,a.login-button {background:#8c6527;}
/**********************************************************************************/

.toptool {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 998;
    width: 100%;
    top: 0;
    overflow: hidden;
//background-image: url(/images/bbg8.jpg);
//background: linear-gradient(#96201d,#ab2421,#c12925,#d62d29,#d7322e);
//background: linear-gradient(#262626,#404040,#595959,#737373);
    font-family: Arial,"微软雅黑";
    font-size: 22px;
    height: 80px;
    line-height: 54px;
    font-weight: bold;
    color:#2db300;
    box-shadow: 0px 4px 5px 0px #ccc;
}

.toptool li {
    float: left;
}

.toptool li a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 14px;
    text-decoration: none;
    text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;
}

.toptool li a:hover:not(.active) {
    color:#ffff00;
    background-color: #39e600;
    text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;
    box-shadow: 0px 0px 3px 2px #d9d9d9;
}

.toptool li .int{
    text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;
    height:80px;
    width:70px;
    color:#fff;
    box-shadow: 0px 0px 3px 2px #d9d9d9;
}
.toptool li .int:hover{
    color:#ffff00;
}
.ist{
    color:#2db300;
    text-shadow:0px 0px 1px #eee,0px 0px 2px #eee,0px 0px 3px #eee,0px 0px 4px #eee;
}

.toptool li a.active {
    color:#fff;
    border:#F44336;
    background-color: #19664c;
    text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;
    box-shadow: 0px 0px 3px 2px #d9d9d9;
}
.toptool li a:hover.active {
    color:#ff0;
    border:#F44336;
    background-color: #39e600;
    text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;
    box-shadow: 0px 0px 3px 2px #d9d9d9;
}

/*帖子签名*/
.sigline {
    margin-left:15px;
    background: url(images/wind/read/sigline.gif) right bottom no-repeat;
    margin-right:30em;
    height:5px;
}
.signature {
    padding:.5em 2em 0 15px;
    height:expression(this.scrollHeight>parseInt(this.currentStyle.maxHeight)?this.currentStyle.maxHeight:"auto");
}
/*end*/
.user-infoWrap2 {
    line-height:18px;
}
.user-pic {
    margin-left:11px;
}
.user-pic img {
    border: 1px solid #c7e1ef;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    padding: 3px;
    position: relative;
    animation: halo 2s linear infinite;
}

@keyframes halo {
    0% {
        box-shadow: 0 0 0 0 rgba(173, 216, 230, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(173, 216, 230, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(173, 216, 230, 0);
    }
}
.user-info {
    position:absolute;
    line-height:160%;
    margin-left:-1.5em;
}
.user-infoWrap {
    color:#555;
    background:#fff url(images/wind/menubg.gif) center top repeat-x;
    border:1px solid #a9d5e9;
    padding:.5em 1em;
    margin-left:20px;
    display:block;
}
.user-info .co {
    position:absolute;
    width:10px;
    height:20px;
    margin-left:-1.8em;
    margin-top:2em;
    background:url(images/wind/user-info-co.gif)
}
/*字体大小*/
.small {
    font-size:12px
}
.middle {
    font-size:14px
}
.big {
    font-size:18px
}
/*digg*/
.dig {
    font-size:12px;
    background:#ffffee url(images/wind/read/readicon.png) .3em -164px no-repeat;
    padding:0 .4em 0 1.6em;
    cursor: pointer;
    color:#666;
    border:1px solid #ffd0a8;
    height:18px;
    line-height:18px;
    margin-right:5px;
}
.dig:hover {
    text-decoration:none;
    border:1px solid #f5a25c;
    color:#ff6600;
}
/*readicon*/
.listread a{
    background:url(images/wind/read/readicon.png);
    width:16px;
    height:20px;
    overflow:hidden;
    text-indent:-2000em;
    display:block;
    margin-right:5px;
    float:left;
}
.listread .readblog {
    background-position:0 -120px;
}
.listread .readonline {
    background-position:0 0px;
}
.listread .readoffline {
    background-position:0 -20px;
}
.listread .readprofile {
    background-position:0 -40px;
}
.listread .readmagic {
    background-position:0 -80px;
}
.listread .readmessage {
    background-position:0 -60px;
}
.listread .readqq {
    background-position:0 -100px;
}
.listread .readww {
    background-position:0 -140px;
}
/*tipbottom*/
.readbot {
    padding:0px;
    margin:0px;
}
.readbot a{
    list-style:none;
    padding:0 0 0 1.8em;
    margin:0;
    float:left;
    cursor:pointer;
    background:url(images/wind/read/yin.gif) no-repeat;
    width:3em;
    height:16px;
}
.readbot .r-quote:hover{
    background-position:0 0;
}
.readbot .r-reply:hover {
    background-position:0 -20px;
}
.readbot .r-score:hover {
    background-position:0 -40px;
}
.readbot .r-keep:hover {
    background-position:0 -60px;
}
.readbot .r-recommend:hover {
    background-position:0 -160px;
}
.readbot .r-report:hover{
    background-position:0 -200px;
}
.readbot .r-quote {
    background-position:0 -80px;
}
.readbot .r-reply {
    background-position:0 -100px;
}
.readbot .r-score {
    background-position:0 -120px;
}
.readbot .r-keep {
    background-position:0 -140px;
}
.readbot .r-recommend {
    background-position:0 -180px;
}
.readbot .r-report {
    background-position:0 -220px;
}
.down {
    background:url(images/down.gif) 5px center no-repeat;
    padding:5px 5px 5px 30px;
    border:#c5d8e8 1px solid;
    margin:0 1em 0 0;
    line-height:40px;
}
/**/
.content-dropB {
    margin-top:2px;
}
.dropB {
    cursor:pointer;
    text-indent:-2000em;
    background:url(images/wind/dropB-cion.gif) 0 0 no-repeat;
    width:15px;
    height:12px;
    overflow:hidden;
;
    font:0/0 a;
    float:left
}
.dropB:hover {
    background-color:#87bcd8;
    background-position:0 -20px;
}
.thusername { color: #FF0000; font-weight:bold; }
.zuozhename {
    font-size: 15px;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet); /* 设置文字渐变背景色 */
    -webkit-background-clip: text; /* 保持文字颜色与渐变背景色一致 */
    color: transparent; /* 将文字颜色设为透明 */
    position: relative;
    animation: color-slide 1s linear infinite; /* 添加颜色滑动动画 */
    background-size: 200% auto; /* 添加渐变背景尺寸 */
}

@keyframes color-slide {
    0% {
        background-position: left top; /* 初始位置 */
    }
    100% {
        background-position: right top; /* 结束位置 */
    }
}
.s4{color:#0033FF;} /*蓝*/
.zuozhedengji {
    font-size: 15px;
    color: #3e73fe;
}
.llcs {
    font-size: 14px;
    color: #1783fc6e;
    padding: 10px;
}
.thuserauthor {background:url(images/wind/author.gif) 0 0 no-repeat;padding-left:20px;}

.yo{float: right;padding-right: 0px;}
.no3{ width:100%;padding-left:0px;height:31px;line-height:30px;overflow: hidden;}
.no5{ float:left;width:36px; height:36px;padding: 7px 5px;}
.no6{ float:left;width: calc(100% - 62px);height:58px;}
.no7{ float:left;width:100%;height:20px;}
.totkt{height: 40px;padding:3px 6px 2px 6px;background: linear-gradient(#99003d,#ff1a75);border:1px solid #800033;border-radius:5px;color:#fff;font-size:14px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);}
.totkt:hover{background: linear-gradient(#ff1a75,#99003d);text-decoration:none;color:#fff;}

.totktu{height: 30px;line-height: 30px;padding:1px 5px;margin-top:2px;background: linear-gradient(#3f91c0,#8cbed9);border:1px solid #3983ad;color:#fff;border-radius:4px;font-size:14px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);text-shadow:0px 0px 1px #000,0px 0px 2px #000,0px 0px 3px #000,0px 0px 4px #000;}
.totktu:hover{background: linear-gradient(#8cbed9, #3f91c0);text-decoration:none;color:#fff;}

.totky{height: 40px;padding:3px 6px 2px 6px;background: linear-gradient(#0069b3,#008ef1);border:1px solid #004b80;border-radius:5px;color:#fff;font-size:14px;box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.6), 2px 2px 1px rgba(0, 0, 0, 0.15);}
.totky:hover{background: linear-gradient(#008ef1,#0069b3);text-decoration:none;color:#fff;}
