.yhsm-wechat-login-container {
margin: 20px 0;
text-align: center;
} .yhsm-wechat-login-button {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #07C160;
color: white;
border: none;
border-radius: 6px;
padding: 12px 24px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3);
}
.yhsm-wechat-login-button:hover {
background-color: #06AD56;
text-decoration: none;
color: white;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}
.yhsm-wechat-login-button:active {
background-color: #059B4C;
transform: translateY(0);
box-shadow: 0 2px 6px rgba(7, 193, 96, 0.3);
} .yhsm-wechat-login-button .wechat-icon {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 8px;
vertical-align: middle;
background-image: url(//yhsm.xyz/wp-content/plugins/yhsm-wechat-login/assets/images/wechat-icon.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
flex-shrink: 0;
} .yhsm-wechat-qrcode-container {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 9999;
align-items: center;
justify-content: center;
backdrop-filter: blur(4px);
}
.yhsm-wechat-qrcode-container.show {
display: flex;
}
.yhsm-wechat-qrcode-content {
background-color: white;
border-radius: 12px;
padding: 30px;
width: 350px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
position: relative;
transform: translateY(0);
animation: yhsm-wechat-fadeIn 0.3s ease-out;
}
@keyframes yhsm-wechat-fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.yhsm-wechat-qrcode-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #333;
}
.yhsm-wechat-qrcode-image {
width: 200px;
height: 200px;
margin: 0 auto 20px;
padding: 10px;
background-color: #fff;
border: 1px solid #eee;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.yhsm-wechat-qrcode-image img {
width: 100%;
height: 100%;
object-fit: contain;
}
.yhsm-wechat-qrcode-tips {
font-size: 14px;
color: #666;
margin-bottom: 20px;
line-height: 1.5;
}
.yhsm-wechat-qrcode-close {
position: absolute;
top: 15px;
right: 15px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
font-size: 24px;
color: #999;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.yhsm-wechat-qrcode-close:hover {
color: #333;
background-color: #f5f5f5;
} @media (max-width: 768px) {
.yhsm-wechat-qrcode-content {
width: 90%;
max-width: 320px;
margin: 20px;
padding: 25px 20px;
}
.yhsm-wechat-qrcode-image {
width: 180px;
height: 180px;
}
.yhsm-wechat-login-button {
width: 100%;
padding: 10px 0;
font-size: 15px;
}
.yhsm-wechat-login-container {
margin: 15px 0;
}
} .yhsm-wechat-login-divider {
display: flex;
align-items: center;
margin: 20px 0;
color: #999;
font-size: 14px;
}
.yhsm-wechat-login-divider::before,
.yhsm-wechat-login-divider::after {
content: '';
flex: 1;
height: 1px;
background-color: #e0e0e0;
}
.yhsm-wechat-login-divider::before {
margin-right: 15px;
}
.yhsm-wechat-login-divider::after {
margin-left: 15px;
} .yhsm-wechat-loading {
display: inline-block;
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: yhsm-wechat-spin 0.8s linear infinite;
margin-right: 8px;
vertical-align: middle;
flex-shrink: 0;
}
@keyframes yhsm-wechat-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .yhsm-wechat-login-status {
display: none;
margin-top: 15px;
padding: 12px 15px;
border-radius: 6px;
font-size: 14px;
line-height: 1.5;
transition: all 0.3s ease;
border-left: 4px solid transparent;
}
.yhsm-wechat-login-status.success {
display: block;
background-color: #f0f9ff;
color: #0073aa;
border-color: #0073aa;
box-shadow: 0 2px 8px rgba(0, 115, 170, 0.1);
}
.yhsm-wechat-login-status.error {
display: block;
background-color: #fdf2e9;
color: #d63638;
border-color: #d63638;
box-shadow: 0 2px 8px rgba(214, 54, 56, 0.1);
}
.yhsm-wechat-login-status.info {
display: block;
background-color: #e7f3ff;
color: #0056b3;
border-color: #0056b3;
box-shadow: 0 2px 8px rgba(0, 86, 179, 0.1);
} @media (prefers-color-scheme: dark) {
.yhsm-wechat-qrcode-content {
background-color: #1e1e1e;
color: #e0e0e0;
}
.yhsm-wechat-qrcode-title {
color: #ffffff;
}
.yhsm-wechat-qrcode-tips {
color: #b0b0b0;
}
.yhsm-wechat-qrcode-image {
background-color: #2a2a2a;
border-color: #404040;
}
.yhsm-wechat-login-divider {
color: #707070;
}
.yhsm-wechat-login-divider::before,
.yhsm-wechat-login-divider::after {
background-color: #404040;
}
.yhsm-wechat-qrcode-close:hover {
background-color: #333333;
color: #ffffff;
}
}:root{--ep-c-white:#fff;--ep-c-medium-white:#eee;--ep-c-white-gray:#ccc;--ep-c-white-red:#ffe8ed;--ep-c-white-yellow:#fdeeca;--ep-c-medium-gray:#626262;--ep-c-light-gray:#999;--ep-c-black:#000;--ep-c-medium-red:#d73c38;--ep-c-dark-red:#b93431;--ep-c-medium-dark-blue:#0073aa;--ep-status-ok:#6aa000;--ep-status-warning:#e3e600;--ep-status-error:red}:root{--ep-default-icon-color:#82878c}#ep-ab-icon{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHN0eWxlPSJmaWxsOiM4Mjg3OGMiIHZpZXdCb3g9IjAgMCA3MyA3MS4zIj48cGF0aCBkPSJNMzYuNSA0LjdjLTE3LjEgMC0zMC45IDEzLjktMzAuOSAzMSAwIDEwIDQuNyAxOC45IDEyLjEgMjQuNWw0LjUtNC41Yy4xLS4xLjEtLjIuMi0uM2wuNy0uNyA2LjQtNi40YzIuMSAxLjIgNC41IDEuOSA3LjEgMS45IDggMCAxNC41LTYuNSAxNC41LTE0LjVzLTYuNS0xNC41LTE0LjUtMTQuNVMyMiAyNy42IDIyIDM1LjZjMCAyLjguOCA1LjMgMi4xIDcuNWwtNi40IDYuNGMtMi45LTMuOS00LjYtOC43LTQuNi0xMy45IDAtMTIuOSAxMC41LTIzLjQgMjMuNC0yMy40czIzLjQgMTAuNSAyMy40IDIzLjRTNDkuNCA1OSAzNi41IDU5Yy0yLjEgMC00LjEtLjMtNi0uOGwtLjYuNi01LjIgNS40YzMuNiAxLjUgNy42IDIuMyAxMS44IDIuMyAxNy4xIDAgMzAuOS0xMy45IDMwLjktMzAuOVM1My42IDQuNyAzNi41IDQuNyIvPjwvc3ZnPg==");background-position:0 6px;background-repeat:no-repeat;background-size:20px;float:left;height:30px;width:26px}#wpadminbar .ep-status-indicator{background-color:#82878c;background-color:var(--ep-default-icon-color);border-radius:100%;display:inline-block;height:10px;margin-right:6px;width:10px}#wpadminbar .ep-status-indicator--success{background-color:#6aa000;background-color:var(--ep-status-ok)}#wpadminbar .ep-status-indicator--warning{background-color:#e3e600;background-color:var(--ep-status-warning)}#wpadminbar .ep-status-indicator--error{background-color:red;background-color:var(--ep-status-error)}#wp-admin-bar-ep-basic-status .ab-item{height:auto!important}#wp-admin-bar-ep-basic-status-summary ul{padding-left:1.5em}#wp-admin-bar-ep-basic-status-summary ul,#wp-admin-bar-ep-basic-status-summary ul li{list-style:disc}#wp-admin-bar-ep-basic-status-summary a{font-weight:700}