/* CSS Document */

body {
    padding: 0;
    margin: 0;
    color: #464e50;
    /*background: #f7f6fb url(bk-lz.jpg) no-repeat top center;*/
}

a {
    color: #464e50;
    text-decoration: none;
}

a:hover {
    color: #c96429;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

input,
select,
textarea {
    border: none;
    padding: 5px;
    width: 73%;
    vertical-align: middle;
    transition: all 0.3s;
}

input[type=radio] {
    display: none;
}

input[type=radio]:checked+label {
    background: rgb(0, 145, 77);
    color: #FFF;
    padding: 5px 20px;
}

label {
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

textarea {
    margin: 10px auto;
}

#B1,
#B2 {
    transition: all 0.2s;
}

#B1 {
    color: #FFF;
    text-shadow: 2px 2px 3px #333;
    background: #c96429;
}

#B3 {
    color: #FFF;
    text-shadow: 2px 2px 3px #333;
    background: rgb(51, 160, 60);
}

#B2 {
    color: #FFF;
    text-shadow: 2px 2px 3px #333;
    background: #9ca8a3;
}

#B1:hover,
#B2:hover {
    text-shadow: 5px 5px 10px rgb(0, 0, 0, 0.6);
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
}

.MSG {
    z-index: 101;
    display: none;
}

@keyframes msgMovie {
    0% {
        filter: blur(5px);
        transform: scaleY(0.6);
    }
    30% {
        transform: scaleY(0.8);
    }
    100% {
        transform: scaleY(1);
        filter: blur(0px);
    }
}

.MSG .content {
    border-radius: 15px 15px 0px 0px;
    border-bottom: 8px #e0814a solid;
    background: #2b1307;
    box-shadow: 5px 5px 15px rgb(0, 0, 0, 0.6);
    width: 40%;
    margin: 100px 30%;
    position: fixed;
    z-index: 103;
    padding: 2% 2% 1.5% 2%;
    color: #ffeb93;
    animation: msgMovie 0.2s ease-out;
}

@keyframes pageMovie {
    from {
        opacity: 0;
        margin-top: -80px;
        filter: blur(15px);
    }
    to {
        opacity: 1;
        margin-top: 0px;
        filter: blur(0px);
    }
}

.main ul {
    animation: pageMovie 0.2s ease-in-out;
}

.MSG .content .inputzone,
.MSG .content .inputzone-s {
    background: #2b1307;
    margin: 10px 0px;
    border-radius: 3px;
    line-height: 40px;
    padding-left: 15px;
}

.MSG .content input {
    padding: 5px;
    background: none;
    color: #EEE;
}

.MSG .inputzone-s {
    width: 250px;
    justify-content: space-between;
    display: flex;
    overflow: hidden;
}

.MSG .inputzone-s input {
    width: 50%;
}

.MSG .mask {
    background: #e9ede9;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    opacity: .2;
    z-index: 100
}

.PAGE {
    width: 1000px;
    margin: 0px;
    padding: 0px 150px;
    transition: all 0.2s;
}
@media screen and (max-width: 768px) {
.PAGE {
    width:90%;
    margin: 0px auto;
    padding: 0px;
    transition: all 0.2s;
}

}

.foot {
    color: #fff;
    font-size: 12px;
}

.foot h3 {
    font-size: 18px;
    line-height: 36px;
    padding: 0;
    margin: 0;
}

.header {
    padding: 20px 0px;
}

@keyframes logoMovie {
    from {
        background-position-y: 0px;
    }
    to {
        background-position-y: -4560px;
    }
}

.logo {
	margin-top:8%;
	margin-bottom:5%;
    height: 110px;
    display: block;
    background: url("../images/logo2.png") no-repeat;
    transition: all 0.5s;
}

.logo:hover {
   /* filter: brightness(220%) blur(2px) contrast(120%);*/
}

.nav {
    background: #030303;
    line-height: 34px;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
}

.nav span {
    display: inline-block;
    border-radius: 3px;
    margin: 0px 7px;
    cursor: pointer;
    padding: 0px 15px;
    transition: all 0.2s;
}

.nav span:hover,
.nav .hover {
    background: #484646;
    color: #FFF;
    opacity: 1;
    padding: 5px 15px;
    border-radius: 13px;
    transform: scale(1.1) translateX(8px) translateY(-8px);
    box-shadow: -10px 10px 15px rgb(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
.logo {
	margin-top:8%;
	margin-bottom:5%;
    height: 110px;
    display: block;
    background: url("../images/logo2.png") no-repeat;
    transition: all 0.5s;
	background-size: 100% auto;
}
.nav span:hover,
.nav .hover {
    background: #484646;
    color: #FFF;
    opacity: 1;
    padding: 5px 15px;
    border-radius: 13px;
	margin-top:20px;
    transform: scale(1.1) translateX(8px) translateY(-8px);
    box-shadow: -10px 10px 15px rgb(0, 0, 0, 0.8);
}
}

.main {
    padding: 20px 2px;
	color:#fff;
}

.main ul {
    display: none;
}

.main .title {
    line-height: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #c6490a;
}

.main .en {
    font-size: 9px;
    line-height: 18px;
    color: #fff;
}

.main .tip {
    color: #464342;
}

.main .tip:empty {
    display: none;
}

.main .tip b {
    color: #c96429;
    cursor: pointer;
}

.main .inputzone,
.main .inputzone-s {
    background: #FFF;
    line-height: 40px;
    display: block;
    width: auto;
    padding-left: 15px;
    color: #716073;
    border-radius: 5px;
    margin: 15px 0px;
    width: 400px;
    font-size: 14px;
}
@media screen and (max-width: 768px) {
.main .inputzone,
.main .inputzone-s {
    background: #FFF;
    line-height: 40px;
    display: block;
    width: auto;
    padding-left: 15px;
    color: #716073;
    border-radius: 5px;
    margin: 15px 0px;
    width: 95%;
    font-size: 14px;
}
}
.main .inputzone2 {
    background: #FFF;
    line-height: 40px;
    display: block;
    width: auto;
    padding-left: 15px;
    color: #716073;
    border-radius: 5px;
    margin: 15px 0px;
    width: 230px;
    font-size: 14px;
	float:left;
	margin-right:20px;
}


.main .inputzone a {
    color: #21a68b;
}

.main .text {
    line-height: 40px;
    border-bottom: 1px #d8ced9 dashed;
    margin-bottom: 10px;
}

.main .text .btn {
    line-height: 30px;
    font-size: 14px;
    width: 100px;
}

.main .text .btn:hover {
    line-height: 30px;
    font-size: 14px;
    width: 120px;
}

.main .text input {
    width: inherit;
    border-radius: 5px;
}

.main .text:last-child {
    border: none;
}

.main .text b {
    color: #bd4906;
    cursor: pointer;
}

.main .inputzone-s {
    width: 270px;
    justify-content: space-between;
    display: flex;
    overflow: hidden;
}

.main .inputzone-s input,
.MSG .inputzone-s input {
    width: 40%;
}

.main .inputzone-s span,
.MSG .inputzone-s span {
    color: #FFF;
    background: #3f62b2;
    display: inline-block;
    padding: 0px 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.main .inputzone-s span:hover,
.MSG .inputzone-s span:hover {
    text-shadow: 5px 5px 25px #000;
    filter: brightness(150%);
    padding: 0px 20px;
}

.main .inputzone-s .disable {
    color: #FFF;
    background: #CCC;
}

.main .btnzone,
.MSG .btnzone {
    margin: 15px 0px;
    display: flex;
    justify-content: space-between;
    width: 416px;
}

.main .btn,
.MSG .btn {
    display: inline-block;
    line-height: 60px;
    width: 200px;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
	background:#c96429;
	color:#fff;
}
.main .btn2,
.MSG .btn2 {
    display: inline-block;
    line-height: 40px;
    width: 150px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
	margin:15px 0;
}
.main .btn2:hover,
.MSG .btn2:hover {
    transform: translate(-3px, -3px);
}
.main .btn:hover,
.MSG .btn:hover {
    transform: translate(-3px, -3px);
}
