oak-general-business/lib/components/common/weChatLoginQrCode/index.less

98 lines
2.1 KiB
Plaintext

.oak-loginQrCode {
iframe {
height: 280px !important;
}
&_dev {
height: 280px;
border: 1px dashed var(--oak-component-stroke);
padding: 10px;
&_header {
display: flex;
flex-direction: column;
align-items: center;
&_input {
border: none;
outline: none;
font-size: 48px;
font-weight: 500;
width: 200px;
text-align: center;
}
&_input:focus {
border: none;
box-shadow: none;
}
&_btn {
width: 60px;
height: 60px;
margin-top: 16px;
border-radius: 30px;
background-color: transparent;
color: #000000d9;
border: 1px solid #d9d9d9;
font-size: 14px;
line-height: 24px;
box-shadow: 0 2px #00000004;
cursor: pointer;
transition: .3s;
}
&_btn:hover {
color: var(--oak-brand-color-7);
border-color: currentColor;
}
&_btn::after {
/*其他样式*/
opacity: 0;
box-shadow: 0 0 0 6px var(--oak-brand-color);
transition: .3s;
}
/*点击*/
&_btn:active::after {
box-shadow: none;
opacity: 0.4;
transition: 0s;
/*取消过渡*/
}
}
&_bottom {
display: flex;
flex-direction: column;
margin-top: 16px;
&_title {
font-size: 16px;
line-height: 26px;
color: var(--oak-text-color-primary);
text-align: center;
margin-bottom: 8px;
}
&_desc {
font-size: 12px;
line-height: 20px;
color: var(--oak-text-color-secondary);
}
}
}
}