.container {
    width: 100%;
    height: 100%;
    background-color: white;
    position: relative;
}

/* 头部 */
.header {
    width: 100%;
    height: 352px;
    background: url(../images/head.png)no-repeat center bottom;
    background-size: 100% 100%;
    text-align: center;
    color: #fff;
}
.header-logo {
    margin:0 auto;
    width: 99px;
    height: 81px;
}
.header-logo img {
    width: 100%;
    height: 100%;
}
.header-type {
    margin: 16px auto;
    height: 32px;
    line-height: 36px;
    text-align: center;
    font-size: 2rem;
    font-family: 'SourceHanSansCN-Bold';
    letter-spacing: 16px;
    padding-left: 16px;
}
.header-info {
    font-size: 1.5rem;
}

/* 主体 */
.body-box {
    padding-top: 85px;
    padding-left: 38%;
    margin-bottom: 72px;
}
.body-main {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.body-download {
    display: none;
    margin-top: 8px;
    margin-bottom: 30px;
    text-align: center;
}
.body-download p {
    font-size: 18px;
    color: #333;
}
.body-download span {
    display: block;
    color: #666;
    margin-top: 10px;
    margin-bottom: 25px;
}
.body-download a {
    display: block;
    margin-top: 12px;
    color: #2bbf72;
}
.input {
    width: 300px;
    padding: 13px 9px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 18px;
    font-size: 16px;
}
.button {
	padding: 12px 33px;
    background-color: #4c603a;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;	
}
.buttonC {
	padding: 12px 70px;
}
.disabled {
    padding: 12px 33px;
    background-color: #bebebe;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    border: none;
}
.button:hover {
    background-color: #60744e;
}
.button:active {
    background-color: #4c603a;
}
.body-info {
    color: #666;
}
.body-error {
    display: none;
    color: #ff3030;
}


/* 图标 */
.img-bar-list {
    display: flex;
    justify-content: space-between;
    max-width: 630px;
    margin: auto;
}
.img-bar-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 71px;
    width: 71px;
    border-radius: 71px;
    background-color: #ecf4e5;
}
.img-bar span{
    color: #666;
    padding-top: 10px;
    display: inline-block;
}

/* foot */
.footer {
    margin-top: 26px;
    width: 100%;
    height: 210px;
    text-align: center;
}
@media screen and (min-height: 937px) {
    .footer {
        margin-top: calc(100vh - 911px);
    }
}