@charset "utf-8";
/* CSS Document : main.css */

/* 全站灰色 html{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: url("data:image/svg+xml;utf8,#grayscale"); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(1);} */

body {
    margin: 0;
    padding: 0;
    background: #313131;
}

/* Header */
.MHeader {
    background: #ffffff;
    width: 100%;
    height: 100px;
    margin-top: 0px;
    margin-bottom: 3px;
    border: 5px solid #41c549;
    border-bottom: none;
    border-left: none;
    border-right: none;
    box-shadow: 0px 3px 5px 5px rgba(248,248,248,1);
}

.MMain {
    background: #ffffff;
    max-width: 1100px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.MMain2 {
    background: #ffffff;
    max-width: 1100px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
}

.MMain2mini {
    background: #ffffff;
    max-width: 1100px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
}

.MLogo {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    background: #ffffff;
    float: left;
}

.MMenu {
    width: 560px;
    height: 100%;
    float: right;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 865px) {
    .MMenu {
        width: 45px;
        height: 100%;
        float: right;
        margin-right: 5px;
    }
}

/* Middle */
.MMiddle {
    background: #ffffff;
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.MMiddle2 {
    background: #ffffff;
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    height: 130px;
    min-height: 130px;
}

.MiddleTop {
    color: #888888;
    font-size: 13px;
}

.MiddleTop a {
    color: #FF6928;
    text-decoration: none;
}

.MiddleTop a:hover {
    color: #0000ff;
    text-decoration: none;
}

.MiddleTitle {
    color: #FF6928;
    letter-spacing: 3px;
    font-size: 24px;
    line-height: 45px;
}

.MiddleMsg {
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 45px;
    color: #888888;
}

/* Footer */
.MFooterA {
    background: #444444;
    width: 100%;
    color: #888;
    padding-top: 5px;
    padding-bottom: 5px;
}

.MMainA {
    background: #444444;
    max-width: 1100px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.MFooterASub {
    vertical-align: top;
    min-width: 315px;
    min-height: 80px;
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 5px;
}

.MFooterASub p {
    background: #444444;
    color: #bbbbbb;
    font-size: 14px;
    padding-left: 10px;
    line-height: 23px;
}

.MFooterASub a {
    background: #444444;
    color: #bbbbbb;
    font-size: 14px;
    text-decoration: none
}

.MFooterB {
    background: #313131;
    width: 100%;
    color: #888;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 88px;
}

.MMainB {
    background: #313131;
    max-width: 1100px;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    line-height: 28px;
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
}

.MMainB a {
    color: #888;
    text-decoration: none
}

.MMainB a:hover {
    color: #ffffff;
    text-decoration: none
}

/* 动态下划线 */
.slidingLink {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.slidingLink:after {
    content: '';
    display: block;
    margin: auto;
    height: 3px;
    width: 0px;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
    margin-top: 5px;
}

.slidingLink:hover:after {
    width: 100%;
    background: #FF6928;
}

/* 自适应菜单 */
.nav-btn {
    height: 42px;
    position: relative;
    width: 42px;
    margin: 0 auto;
 /*水平居中*/
    position: relative;
 /*脱离文档流*/
    display: none;
    background-color: #f4f4f4;
}

@media screen and (max-width: 865px) {
    .nav-btn {
        display: inline-block;
    }
}

.MHeaderMemu {
    background: #313131;
    width: 100%;
    display: none;
}

.MHeaderMemuSub {
    height: 35px;
    line-height: 32px;
    border-bottom: 2px solid #444444;
}

.MHeaderMemuSub a {
    padding-left: 15px;
    color: #eeeeee;
    text-decoration: none;
    letter-spacing: 3px;
    display: block;
}

.MHeaderMemuSub a:hover {
    color: #ffffff;
    text-decoration: none;
}

ul.nav-bar {
    list-style: none;
    align-items: center;
    vertical-align: middle;
    display: inline-block;
}

ul.nav-bar li {
    display: inline;
    padding-right: 15px;
}

ul.nav-bar li a {
    text-decoration: none;
    font-size: 18px;
    color: #313131;
}

ul.nav-bar li a:hover {
    color: #777;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    ul.nav-bar {
        display: none;
    }
}

.SetLang {
    line-height: 45px;
    font-size: 28px;
    padding-left: 70px;
    padding-right: 70px;
    color: #444;
    text-decoration: none;
    display: inlines;
}

.SetLang:hover {
    color: #FF6928;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .SetLang {
        display: block;
    }
}

.LoginLeft {
    width: 49%;
    min-width: 320px;
    max-width: 525px;
    height: 350px;
    display: inline-block;
    vertical-align: top;
}

.LoginRight {
    width: 49%;
    min-width: 320px;
    max-width: 525spx;
    height: 350px;
    display: inline-block;
    vertical-align: top;
}

.LoginDiv1 {
    width: 315px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    height: 310px;
}

.LoginDiv2 {
    width: 315px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 28px;
}

.LoginText {
    line-height: 22px;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 5px;
    text-align: left;
    color: #646464;
}

.TextVCode {
    border: 0;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    background-color: #e8f0fe;
    display: inline-block;
    border-bottom: 1px solid #9a9a9a;
    padding-left: 8px;
    line-height: 30px;
    font-size: 14pt;
    font-family: '微软雅黑', Tahoma, Geneva, sans-serif;
    height: 32px;
    border-radius: 5px;
    width: 145px;
}

.VCodeInput {
    vertical-align: top;
    display: inline-block;
    width: 155px;
    height: 36px;
}

.VCodeDiv {
    vertical-align: top;
    display: inline-block;
    width: 140px;
    height: 36px;
    padding-left: 0px;
    left: 12px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .LoginLeft {
        margin: 0 auto;
        display: flex;
    }

    .LoginRight {
        padding-top: 50px;
        margin: 0 auto;
        display: flex;
        height: 150px;
        border: 1px solid #41c549;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }
}

.RegLeft {
    width: 49%;
    min-width: 320px;
    max-width: 525px;
    display: inline-block;
    vertical-align: top;
}

.RegRight {
    width: 49%;
    min-width: 320px;
    max-width: 525spx;
    display: inline-block;
    vertical-align: top;
}

.RegDiv1 {
    width: 360px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 378px;
    position: relative;
    left: 0px;
}

.RegDiv2 {
    width: 360px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 28px;
    height: 450px;
}

.CHKTextT {
    width: 25px;
    height: 25px;
    text-align: center;
    display: inline-block;
    color: #00ff00;
    font-size: 21px;
    visibility: hidden;
    display:none;
}

.CHKTextF {
    width: 25px;
    height: 25px;
    text-align: center;
    display: inline-block;
    color: #ff0000;
    font-size: 21px;
    visibility: hidden;
    display:none;
}

@media screen and (max-width: 768px) {
    .RegLeft {
        margin: 0 auto;
        display: flex;
    }

    .RegRight {
        margin: 0 auto;
        display: flex;
    }

    .RegLeft {
        width: 340px;
    }

    .RegRight {
        width: 340px;
    }
}

.RegCAPTCHA {
    -moz-box-shadow:inset 0px 1px 0px 0px #97c4fe;
    -webkit-box-shadow:inset 0px 1px 0px 0px #97c4fe;
    box-shadow:inset 0px 1px 0px 0px #97c4fe;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #45C018), color-stop(1, #44C511));
    background:-moz-linear-gradient(top, #45C018 5%, #44C511 100%);
    background:-webkit-linear-gradient(top, #45C018 5%, #44C511 100%);
    background:-o-linear-gradient(top, #45C018 5%, #44C511 100%);
    background:-ms-linear-gradient(top, #45C018 5%, #44C511 100%);
    background:linear-gradient(to bottom, #45C018 5%, #44C511 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#45C018', endColorstr='#44C511',GradientType=0);
    background-color:#45C018;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    border:1px solid #337fed;
    position:relative;
    cursor:pointer;
    color:#ffffff;
    font-family: '微软雅黑',Tahoma, Geneva, sans-serif;
    font-size:20px;
    padding:0px 3px;
    text-decoration:none;
    text-shadow:1px 1px 0px #888888;
    width: 182px;
    height: 34px;
    line-height: 31px;
    text-align: center;
    left: 4px;
    top: 2px;
}
.RegCAPTCHA:disabled{
    color:#e4e4e4;
}  

.TextLabelV {
    border: 0;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    background-color: 
    #e8f0fe;
    display: inline-block;
    border-bottom: 1px solid
    #9a9a9a;
    margin-bottom: 15px;
    padding-left: 8px;
    line-height: 30px;
    font-size: 14pt;
    font-family: '微软雅黑', Tahoma, Geneva, sans-serif;
    height: 32px;
    border-radius: 5px;
    width: 108px;
}

.UpLoadImg {
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 22px;
    color:#646464;
}

.LoginErrorText{
    font-size: 12px;
    color:#ff0000;
}

.RegErrorText{
    font-size: 12px;
    color:#ff0000;
}

.PostRegErrorText{
    font-size: 14px;
    color:#ff0000;
    font-weight: bold;
}

.CHKTextT1 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF1 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}

.CHKTextT2 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF2 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}

.CHKTextT3 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF3 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}

.CHKTextT4 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF4 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}

.CHKTextT7 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF7 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}

.CHKTextT8 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #00ff00;
    font-size: 21px;
    display:none;
}
.CHKTextF8 {
    width: 25px;
    height: 25px;
    text-align: center;
    color: #ff0000;
    font-size: 21px;
    display:none;
}
