/**
 * 登录弹窗和评论组件样式
 */

/* 登录按钮样式 */
.dologin {
    cursor: pointer;
}

/* 清除浮动 */
.clearfloat:after {
    content: "";
    display: block;
    clear: both;
}

/* 第三方登录样式 */
.auth-clients {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.auth-clients li {
    display: inline-block;
}

.auth-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s;
}

.auth-icon:hover {
    background: #4285f4;
    color: #fff;
    text-decoration: none;
}

/* 评论区域通用样式 */
.comment-section {
    max-width: 100%;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body #bindDiv .box,
    body #popDiv .box {
        width: 90%;
        max-width: 460px;
    }

    body #bindDiv .box .mian10,
    body #popDiv .box .mian10 {
        width: 90%;
    }

    .wlj-plugin-comment .comment-list .comment-list-item {
        margin-left: 0;
        padding-left: 50px;
    }
}

/* 表单组样式 */
.form-group {
    margin-bottom: 15px;
}

/* 隐藏类 */
.hidden {
    display: none !important;
}

/* 拉右 */
.pull-right {
    float: right;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: #4285f4;
}

a:hover {
    text-decoration: underline;
}

/* 按钮基础样式 */
button {
    cursor: pointer;
    border: none;
    outline: none;

/* 用户下拉菜单样式 */
.header-right .dropdown {
    position: relative;
    display: inline-block;
}

.header-right .dropdown-toggle {
    color: #333;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
}

.header-right .dropdown-toggle .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.header-right .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 90px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.header-right .dropdown-menu.show {
    display: block;
}

.header-right .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
}

.header-right .dropdown-menu > li > a:hover,
.header-right .dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.header-right .signin-loader {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
}

.header-right .signin-loader:hover {
    color: #4285f4;
}

.header-right .register-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.header-right .register-btn:hover {
    background-color: #357ae8;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

