@charset "utf-8";
@import url('https://at.alicdn.com/t/c/font_2247001_acq5j0yb7us.css'); /* 字体图标 huzhangjun001 防伪溯源*/
/*清除框模型默认样式，设置边框模型*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    outline: none;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
/*字体默认大小 为1rem*/
html, body {
    font-size: 62.5%;
    font-family: "PingFangSC-Light", "微软雅黑", Arial, Tahoma, sans-serif;
    position: relative;
    width: 100%;
    height: 100%;
}
/*清除链接下划线*/
a { text-decoration: none; text-align: center; color: inherit;}
/*清除列表样式*/
ol, ul, li { list-style: none; }

table { border-collapse: collapse; border-spacing: 0; }

img { border: 0; max-width: 100%; }
/*清除input默认样式*/
input { -webkit-appearance: none;-moz-appearance: none;appearance: none; }

.fl { float: left; }
.fr {float: right; }
.clearfix::after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}/*添加给浮动元素的父级元素*/
.flex{ display: -webkit-box;display: -webkit-flex;display: -moz-box;display: -ms-flexbox;display: flex; }
.justify{ -webkit-box-pack: justify;-webkit-justify-content: space-between;-moz-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between; }
.align-items{ -webkit-box-align: center;-webkit-align-items: center;-moz-box-align: center;-ms-flex-align: center;align-items: center; }

.content{
    width: 1100px;
    margin: 0 auto;
    font-size: 12px;
}
.topbar{
    height: 30px;
    background-color: #eee;
}
.phone{
    line-height: 30px;
    background: url(../images/icon_phone.png) no-repeat left center;
}
.phone span{
    padding-left: 25px;
}
.top{
    height: 110px;
}
.logo{
    width: 500px;
    margin-top: 15px;
}
.logo img{
    margin:0 10px 0 0;
	height:80px;
}
.title{
    line-height: 100px;
    font-size:calc(100vw * 32 / 1920);
    font-weight: 600;
    color: #895a15;
}
.bg{
    position: relative;
    height: 490px;
    width: 100%;
    background: url(../images/201705051604217511.jpg) no-repeat center;
}
.bg::before{
    content: '';
    display: block;
    width: 1500px;
    height: 490px;
    background: url(../images/201705051604217511.jpg) no-repeat center;
    position: absolute;
    z-index: -1;
    left: 0px;
    filter:alpha(opacity=20);
    -moz-opacity:0.2;
    -webkit-opacity: 0.2;
    opacity: 0.2;
}
.bg::after{
    content: '';
    display: block;
    width: 1500px;
    height: 490px;
    background: url(../images/201705051604217511.jpg) no-repeat center;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    filter:alpha(opacity=20);
    -moz-opacity:0.2;
    -webkit-opacity: 0.2;
    opacity: 0.2;
}
.bg .content{
    position: relative;
    height: 490px;
}
.login{
    position: absolute;
    z-index: 99;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);transform: translate(0,-50%);
    padding: 20px;
    background: rgba(255,255,255,.7);
    box-shadow: 0 4px 8px rgba(0,0,0,.4)
}
.foot{
    height: 100px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 99;
    bottom: 0;
}
.power{
    height: 100px;
    margin: 0 auto;
    text-align: center;
    line-height: 100px;
}
.Tips{ 
    text-align: center; 
}
input{
    height: 36px;
    width: 240px;
}
.username,.password{
    position: relative;
    margin-bottom: 20px;
}
.username input,.password input{
    padding-left: 40px;
}
.username::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: url(../images/username.svg) no-repeat center;
    background-size: cover;
}
.password::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: url(../images/password.svg) no-repeat center;
    background-size: cover;
}
.forget,.entry{
    margin-bottom: 6px;
}
.forget a{
    color: #2A78B8;
}
.entry input{
    background: #895a15;
    color: #fff;
    cursor: pointer;
}
.check input{
    background: #88807f;
    color: #fff;
    cursor: pointer;
}
.entry input:hover{
    background: #704506;
}
.check input:hover{
    background: #F89D35;
}
#loginErrMsg{
    padding: 6px;
    font-size: 16px;
    text-align: center;
}
.field-validation-valid{
    display: none;
}

/* 小程序二维码悬浮窗样式 */
.mini-program-float {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mini-program-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #013d76, #895a15);
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow:
        -5px 5px 20px rgba(0, 0, 0, 0.2),
        inset 2px 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.mini-program-toggle:hover {
    background: linear-gradient(135deg, #895a15, #013d76);
    transform: scale(1.05);
    box-shadow:
        -7px 7px 25px rgba(0, 0, 0, 0.25),
        inset 2px 0 0 rgba(255, 255, 255, 0.3);
}

.mini-program-toggle i {
    transition: transform 0.3s ease;
    font-size: 2.5rem;
}
.mini-program-content {
    background: white;
    border-radius: 20px 0 0 20px;
    padding: 25px;
    box-shadow:
        -10px 10px 40px rgba(0, 0, 0, 0.2),
        inset 1px 0 0 rgba(0, 0, 0, 0.1);
    width: 280px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(45, 140, 61, 0.1);
    border-right: none;
}

.mini-program-float.expanded .mini-program-content {
    transform: translateX(0);
}

.mini-program-float.expanded .mini-program-toggle i {
    transform: rotate(180deg);
}

.qrcode-title {
    font-size: 1.6rem;
    color: #895a15;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qrcode-title i {
    font-size: 1.5rem;
}

.qrcode-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(45, 140, 61, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.qrcode-desc {
    color: #666;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
}

.qrcode-desc strong {
    color: #895a15;
    font-weight: 600;
}

.qrcode-tips {
    background: rgba(45, 140, 61, 0.05);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.4;
    border-left: 3px solid #895a15;
}

.qrcode-tips i {
    color: #895a15;
}

 