/*导航*/
.header {
    width: 100%;
}
.header .top {
    width: 100%;
    height: 90px;
    background: #ffffff;
}
.header .top .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .top  .title {
    width: 580x;
    height: 90px;
}
.header .top  .title img {
    width: 100%;
    height: 100%;
}
.header .top  .nav {
    display: flex;
}
.header .top  .nav li {

    box-sizing: border-box;
    height: 100%;
    line-height: 90px;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    margin-right: 18px;
}
.header .top  .nav li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 12px;
}
.header .top  .nav .active {
    background: #A90614;
    color: #fff;
}
.header .top  .nav .active a {
    color: #fff !important;
}
.header .top  .nav li:hover {
    background: #A90614;

}
.header .top  .nav li:hover a {
    color: #fff !important;
}
.user_info {
    width: 88px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
}
.user_info .name:hover {
    background: #A90614;
    color: #ffffff;
}
.user_info .name {
    display: block;
    width: 100%;
    height: 100%;
}
.user_info .name .iconfont {
    display: none;
    cursor: pointer;
}
.user_info .name:hover span{
    color: #ffffff;
}
.user_info .quit {
    width: 88px;
    height: 40px;
    line-height: 40px;
    color: #333333;
    background: #ffffff;
    bottom: 0;
    display: none;
    cursor: pointer;
}
/*中间内容*/
.content {
    width: 1200px;
    margin: 40px auto 75px;
    background: #ffffff;
    overflow: hidden;
}
.content .title {
    margin-top: 31px;
    margin-left: 30px;
}
.content .title .rectangle {
    width: 4px;
    height: 18px;
    background: #A90614;
    margin-right: 10px;
    margin-top: 2.5px;
}
.content .title .text {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}
.content .form_input {
    margin-top: 31px;
    position: relative;
}
.content .input {
    margin-bottom: 10px;
}
.content .input .min_text {
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    color: #999999;
    margin-left: 9px;
}
.content .input .label {
    /*margin-top: 4px;*/
    text-align: right;
    width: 470px;
    height: 35px;
    line-height: 35px;
}
.content .input .label .style {
    font-size: 7px;
    color: #A90614;
    font-weight: bold;
}
.content .input .label .text {
    color:#333333;
    font-size: 14px;
}
.content .input  input[type="text"] {
    display: block;
    outline: none;
    padding: 0 15px;
    box-sizing: border-box;
    color: #333333;
    font-size: 14px;
    background: #fafafa;
    border-radius: 2px;
    width: 390px;
    height: 35px;
    border: 1px solid #e8e8e8;
}
.content select {
    width: 390px;
    height: 35px;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
    color: #333333;
    border-radius: 2px;
}
.content .input .verify {
    display: block;
    cursor: pointer;
    width: 100px;
    margin-left: 10px;
    height: 35px;
}
.content .button {
    margin-left: 470px;
    margin-top: 59px;
    margin-bottom: 58px;
}
.content .button input[type="reset"] {
    width: 120px;
    height: 40px;
    background: #b8b8b8;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    border: none;
    cursor: pointer;
    margin-right: 20px;
    opacity: 1;
}
.content .button input[type="reset"]:hover {
    opacity: .8;
}
.content .button input[type="submit"] {
    width: 120px;
    height: 40px;
    background: #a90614;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    border: none;
    cursor: pointer;
    margin-right: 20px;
}


