html {
    font-size: 10px;
}

/* 移动端的标准都是根据iphone手机来指定标准的
   微信：是按照iphone6的设计标准设计的，可以参考微信的标准
   iphone6的分辨率 750*1334   在pc端 显示的比例375*667
*/

@media screen and (min-width:300px) {
    html {
        font-size: 8px !important;
    }
}

@media screen and (min-width:320px) {
    html {
        font-size: 8.53px !important;
    }
}

/* iphone6/7/8 */
@media screen and (min-width:375px) {
    html {
        font-size: 10px !important;
    }
}

/* iphone12p */
@media screen and (min-width:390px) {
    html {
        /* 10*390/375= */
        font-size: 10.4px !important;
    }
}

/* iphone6p/7p/8p */
@media screen and (min-width:414px) {
    html {
        /* 10*414/375= */
        font-size: 11.04px !important;
    }
}

@media screen and (min-width:540px) {
    html {
        /* 10*540/375= */
        font-size: 14.4px !important;
    }
}

@media screen and (min-width:600px) {
    html {
        /* 10*600/375= */
        font-size: 16px !important;
    }
}

@media screen and (min-width:700px) {
    html {
        /* 10*700/375= */
        font-size: 18.66px !important;
    }
}

/* ipad */
@media screen and (min-width:768px) {
    html {
        /* 10*768/375= */
        font-size: 20.48px !important;
    }
}

/* ipad Air*/
@media screen and (min-width:790px) {
    html {
        /* 10*820/375= */
        font-size: 21.86px !important;
    }
}

@media screen and (min-width:800px) {
    html {
        font-size: 10px !important;
    }
}

body,
html {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-family: tahoma, Arial, "Microsoft YaHei", SimSun;
}

body {
    background: #F5F6FA;
}

input,
button,
select,
textarea {
    font-family: tahoma, Arial, "Microsoft YaHei", SimSun;
}

dl,
dt,
dd,
ul,
li,
ol,
h1,
h2,
h3,
p,
form {
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    list-style: none;
}

img {
    vertical-align: top !important;
    display: inline-block;
}

.clear {
    clear: both;
}

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #71BD1D;
    transition: 0.2s ease color;
}

.one-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.three-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.layui-fixbar {
    width: 8rem !important;
}

.layui-fixbar li {
    width: 8rem !important;
    height: 8rem !important;
    line-height: 8rem !important;
    font-size: 6rem !important;
}

.online {
    width: 8rem;
    position: fixed;
    left: 3rem;
    bottom: 16.3rem;
    z-index: 999;
    color: #737373;
    font-size: 1.4rem;
    text-align: center;
}

.online .zx {
    line-height: 2.5rem;
    background: #fff;
    margin-top: .1rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

.online li {
    width: 100%;
    height: 8rem;
    position: relative;
    transition: all .4s;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
    margin-top: .1rem;
    box-sizing: border-box;
}

.online li:hover {
    background: #71BD1D;
    color: #fff;
}

.online li:hover a {
    color: #fff;
}

.online li:hover .wx-hide {
    display: block;
}

.online li:hover .wx1 {
    display: block;
}

.online li:hover .wx {
    display: none;
}

.online li .wx-hide {
    position: absolute;
    right: -21rem;
    top: 0;
    z-index: 2;
    width: 18rem;
    height: 18rem;
    padding: 1.5rem;
    transition: all .4s;
    display: none;
    background: #fff;
}

.online li .wx-hide img {
    width: 100%;
    height: 100%;
}

.online li a {
    color: #737373;
}

.online li img {
    width: 8rem;
    height: 5rem;
    transition: all .4s;
}

.online li .wx {
    display: block;
}

.online li .wx1 {
    display: none;
}

.online li p {
    width: 100%;
    height: 2.5;
    line-height: 2.5rem;
}

.head-bg {
    width: 100%;
    height: 12rem;
}

.headers {
    width: 100%;
    height: 12rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all .4s;
}

.headmask {
    top: -4rem;
    border-bottom: .2rem solid #669900;
}

.head {
    width: 100%;
    height: 4rem;
    background: #669900;
}

.head-cart {
    width: 120rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 4rem;
}

.head-login {
    display: flex;
}

.head-login img {
    width: 1.2rem;
    height: 1.2rem;
    margin: 1.4rem .2rem 0 0;
}

.head-login .admin {
    cursor: pointer;
    position: relative;
    transition: all .4s;
}

.head-login .admin:hover .admin-ul {
    display: block;
}

.login-hide {
    display: flex;
}

.login-hide:nth-child(2) {
    display: none;
}

.admin-ul {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0rem 0.2rem 1rem 0rem rgba(0, 0, 0, 0.0461);
    display: none;
    transition: all .4s;
}

.admin-ul li {
    line-height: 4rem;
}

.admin-ul li:hover a {
    background: #fff;
    color: #71BD1D;
}

.admin-ul li:hover .quit {
    background: #fff;
    color: red;
}

.admin-ul li a {
    color: #333;
}

.head-login a {
    display: inline-block;
    width: 10rem;
    height: 4rem;
    text-align: center;
    color: #FFFFFF;
    transition: all .4s;
}

.head-login a:hover {
    background: #fff;
    color: #71BD1D;
}

.cart {
    background: rgba(255, 255, 255, .1)
}

.language {
    border: none;
    outline: none;
    color: #fff;
    height: 100%;
    line-height: 4rem;
    font-size: 1.4rem;
    background: none;
    padding: 0 1.8rem;
    transition: all .4s;
    position: relative;
    cursor: pointer;
}

.language:hover .language-ul {
    display: block;
}

.language-ul {
    position: absolute;
    left: 0;
    top: 4rem;
    z-index: 2;
    width: 100%;
    background: #fff;
    text-align: center;
    display: none;
    transition: all .4s;
}

.language-ul li {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    color: #333;
    background: #fff;
    white-space: nowrap;
    transition: all .4s;
}

.language-ul li a {
    width: 100%;
    color: #333;
    padding: 0 .8rem;
    box-sizing: border-box;
    transition: all .4s;
}

.language-ul li:hover a {
    color: #71BD1D;
    background: rgba(246, 246, 246);
}

.language:hover {
    background: #fff;
    color: #71BD1D;
}

.header {
    width: 100%;
    height: 8rem;
    background: #FFFFFF;
}

.header-head {
    width: 120rem;
    height: 100%;
    margin: 0 auto;
    color: #737373;
    display: flex;
    justify-content: space-between;
}

.logo {
    height: 6rem;
    margin: 1rem 0;
}

.logo img {
    height: 100%;
}

.menu {
    height: 100%;
    font-size: 1.6rem;
    color: #737373;
    line-height: 2.5rem;
}

.menu ul {
    height: 100%;
    display: flex;
}

.menu ul li {
    height: 100%;
    line-height: 8rem;
    position: relative;
}

.menu ul li a {
    display: inline-block;
    width: 100%;
    padding: 0 1.7rem;
    box-sizing: border-box;
}

.menu ul .active a {
    font-weight: bold;
    color: #1C1D21;
    position: relative;
}

.menu ul li .hot {
    position: absolute;
    top: 1.4rem;
    right: -0.4rem;
}

.menu ul li:hover a {
    color: #1C1D21;
}

.menu ul li:hover::before {
    width: 2rem;
}

.menu ul li::before {
    content: '';
    width: 0;
    height: .2rem;
    background: #71BD1D;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    transition: all .4s;
}

.menu ul .active::before {
    width: 2rem;
}

.menu a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #737373;
    transition: all .4s;
}

.search {
    width: 25.8rem;
    height: 3.6rem;
    line-height: 3.4rem;
    padding-left: 1rem;
    margin: 2.2rem 0;
    background: #FFFFFF;
    border: .1rem solid #71BD1D;
    box-sizing: border-box;
    position: relative;
}

.search .search-put {
    width: 20rem;
    height: 100%;
    border: none;
    outline: none;
}

.search .search-but {
    width: 3.4rem;
    height: 3.4rem;
    position: absolute;
    top: 0;
    right: 0;
    background: #71BD1D;
    border: none;
    outline: none;
    cursor: pointer;
}

.search .search-but img {
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

::-webkit-input-placeholder {
    /* WebKit browsers，webkit内核浏览器 */
    color: #B2B2B2;
    font-size: 1.4rem;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #B2B2B2;
    font-size: 1.4rem;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #B2B2B2;
    font-size: 1.4rem;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #B2B2B2;
    font-size: 1.4rem;
}

.foot {
    width: 100%;
    background: #669900;
}

.foot-main {
    width: 120rem;
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    color: #FFF;
}

.foot-left {
    width: 64rem;
    position: relative;
    font-size: 1.4rem;
}

.foot-top {
    width: 100%;
    height: 2.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2.5rem;
    border-bottom: .1rem solid rgba(255, 255, 255, .2);
    padding-bottom: 1rem;
}

.foot-top .en {
    font-size: 1.2rem;
}

.foot-con {
    width: 36rem;
    overflow: hidden;
}

.foot-con p {
    margin-top: 1.2rem;
}

.foot-code {
    width: 18rem;
    position: absolute;
    top: 5rem;
    right: 2rem;
}

.foot-code p {
    width: 100%;
    line-height: 3.2rem;
    text-align: center;
    font-size: 1.6rem;
}

.foot-right {
    width: 48rem;
    position: relative;
}

.foot-inputs {
    width: 100%;
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
}

.foot-form {
    margin-top: 2.2rem;
}

.foot-input {
    width: 23rem;
    height: 4rem;
    line-height: 4rem;
    padding: 0 1rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .1);
}

.foot-input input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    font-weight: normal;
    color: #fff;
    font-size: 1.4rem;
}

.foot-input input::placeholder {
    color: #fff;
}

.foot-inputs textarea::placeholder {
    color: #fff;
}

.foot-textarea {
    width: 100%;
    height: 9rem;
    padding: 1rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .1);
}

.foot-inputs textarea {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    font-weight: normal;
    color: #fff;
    font-size: 1.4rem;
}

.laber-bot {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: normal;
    cursor: pointer;
}

.laber-bot img {
    width: 1.4rem;
    height: 1.4rem;
    vertical-align: middle !important;
    margin-right: .4rem;
}

.footer {
    width: 100%;
    height: 6rem;
    background: #669900;
    position: relative;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    box-sizing: border-box;
}

.footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background: url(../image/footer.png) no-repeat;
    background-size: 100% 100%;
}

.footer-main {
    width: 120rem;
    margin: 0 auto;
    height: 100%;
    line-height: 6rem;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-main .company {
    margin-right: 3rem;
}

.footer-main a {
    color: #fff;
}

.footer-main a:hover {
    color: #fff;
}

.enter {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    transition: all .4s;
}

.enter-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    transition: all .4s;
}

.enter-main {
    width: 39rem;
    height: 46.3rem;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: #333;
    overflow: hidden;
}

#login .enter-main {
    height: 46rem;
}

.enter-top {
    padding: 5rem 0;
    text-align: center;
    font-weight: bold;
    color: #1C1D21;
    font-size: 2rem;
}

.enter-content {
    width: 100%;
    padding: 0 3rem;
    box-sizing: border-box;
}

.enter-content img {
    width: 2.2rem;
    height: 2.2rem;
    margin-top: 0.9rem;
}

.enter-radio,
.enter-input {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    box-sizing: border-box;
}

.enter-radio a {
    font-size: 1.2rem;
    color: #71BD1D;
}

.enter-radio a:hover {
    color: #71BD1D;
}

.layui-form-radio:hover>*,
.layui-form-radioed,
.layui-form-radioed>i {
    color: #71BD1D !important;
}

.e-btn {
    margin-top: 4rem !important;
}

.enter-input {
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid #E6E6E6;
    display: flex;
}

.layui-input-wrap {
    width: calc(100% - 3.2rem) !important;
}

.enter-content .layui-input {
    height: 100% !important;
    border: none !important;
    outline: none !important;
    display: inline-block !important;
    font-size: 1.4rem !important;
    box-shadow: none !important;
}

.enter .layui-icon-eye,
.enter .layui-icon-eye-invisible {
    font-size: 2rem !important;
}

.layui-form-item .radio {
    width: 1.8rem !important;
    height: 1.8rem !important;
    margin-right: 1rem;
    /* margin-top: 1.1rem; */
    vertical-align: middle;
    background: #71BD1D !important;
}

.enter-button .layui-btn {
    width: 100% !important;
    height: 5rem !important;
    background: #fff !important;
    border-radius: 0.4rem !important;
    color: #71BD1D !important;
}

.enter-button .btn-enter {
    background: #71BD1D !important;
    color: #fff !important;
}

.enter-button {
    margin-bottom: 1rem !important;
}

.enter-back {
    position: absolute;
    top: 3.5rem;
    left: 3rem;
    width: 2rem;
    height: 1.6rem;
    overflow: hidden;
}

.enter-back img {
    width: 100%;
}

.find {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.find li {
    width: 10rem;
    height: 2.8rem;
    text-align: center;
    line-height: 2.8rem;
    border-radius: 1.4rem;
    border: .1rem solid #71BD1D;
    margin: 0 2rem;
    color: #71BD1D;
    transition: all .4s;
    font-size: 1.2rem;
}

.find .active,
.find li:hover {
    background: #71BD1D;
    color: #fff;
}

.find .active a {
    color: #fff;
}

.find li:hover a {
    color: #fff;
}

.find li a {
    color: #71BD1D;
}

.layui-btn-primary {
    border: none !important;
    font-size: 1.2rem !important;
    color: #71BD1D !important;
}

.sub-link {
    width: 120rem;
    height: 5rem;
    line-height: 5rem;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #737373;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-link a {
    color: #737373;
}

.sub-link span {
    padding: 0 1rem;
}

.sub-link .active a,
.sub-link .active {
    color: #71BD1D;
}