@charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/** 清除内外边距 **/
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    border: none;
}

/* structural elements 结构元素 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,
    /* list elements 列表元素 */
dl, dt, dd, ul, ol, li,
    /* text formatting elements 文本格式元素 */
pre,
    /* form elements 表单元素 */
form, fieldset, legend, button, input, textarea,
    /* table elements 表格元素 */
th, td {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body, pre, button, input, select, textarea /* for ie */
{
    font: 14px/1.6 tahoma, arial, 'Microsoft YaHei', sans-serif;
}

/** 重置文档高度 **/
html, body {
    height: 100%;
}

body {
    color: #c1c1c1;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

/* 将斜体扶正 */
address, cite, dfn, em, var {
    font-style: normal;
}

/* 统一等宽字体 */
code, kbd, pre, samp {
    font-family: courier new, courier, monospace;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */
small {
    font-size: 12px;
}

/** 重置列表元素 **/
ul, ol {
    list-style: none;
}

/** 重置文本格式元素 **/
a {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

a:focus {
    outline: none;
}

/** 重置表单元素 **/
legend {
    color: #000;
}

/* for ie6 */
fieldset, img {
    border: 0;
    vertical-align: middle
}

/* 使得表单元素在 ie 下能继承字体大小 */
button, input, select, textarea {
    font-size: 100%;
}

/*表单元素字体*/
input, textarea, button {
    font: 14px/1.6 Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', 微软雅黑, Arial, sans-serif;
    outline: 0;
}

input[type='button'], input[type='submit'], button {
    cursor: pointer;
}

button:focus {
    outline: none;
}

input[type='button'], input[type='submit'], input[type='reset'], button { /*input[type="file"]::-webkit-file-upload-button,*/
    border: 1px solid transparent;
}

/*设置表单元素不可用的样式*/
input[readonly],
input:disabled,
button:disabled,
button[readonly],
textarea:disabled {
    color: #545454 !important;
    background-color: #ccc !important;
}

input[readonly]:hover,
input:disabled:hover,
button:disabled:hover,
button[readonly]:hover,
textarea:disabled:hover {
    cursor: not-allowed;
}

/** placeholder 重置 **/
[placeholder] {
    font-family: 'Microsoft yahei';
}

::-moz-placeholder {
    text-indent: 5px; /* 没有用 */
    opacity: 1 !important;
    color: #bbb;
}

:-ms-input-placeholder {
    text-indent: 5px;
    color: #bbb;
}

::-webkit-input-placeholder {
    text-indent: 5px;
    color: #bbb;
}

/** 重置表格元素 **/
table {
    border-spacing: 0;
    border-collapse: collapse;
}

/* #滚动条
=========*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track-piece {
    margin: -2px;
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    min-width: 150px;
    min-height: 150px;
    border-radius: 10px;
    background: #aaa;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background: #555;
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background: #555;
}
body{background:#fff3ef;}

.logo_box {
    position: static;
    /*left: 230px;*/
    width: 160px;
}

.container .navbar-nav {
    float: right;
}

.navbar-nav li {
    float: left;
    margin-left: 10px;
    width: 100px;
    background: #FFFFFF;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
    color: #ba2626;
}

.logo_box > img {
    width: 100%;
    margin-top: 10%;
}

.navbar-default .navbar-nav > li > a {
    color: #ba2626 !important;
}
.navbar-default .navbar-nav > li > a:hover{

}

.navbar-nav > li > a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.navbar-default {
    background: rgba(236, 107, 81, .5) !important;
    position: absolute;
    z-index: 100;
    width: 100%;
    border: none !important;
    height: 70px;
    margin-bottom: 0 !important;
}

.clear {
    clear: both;
}

@media screen and (max-width: 450px) {
    .container {
        width: 350px !important;
    }
}

@media screen and (max-width: 750px) {
    .navbar-nav li {
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
    }

    .navbar-nav {
        width: 100%;
        float: none;
        margin: 0px;
    }

    .container .navbar-nav {
        margin: 0px;
        margin-top: 10px;
    }

    .logo_box {
        position: absolute;
        width: 40%;
        left: 0;
    }

    .logo_box img {
        width: 72%;
        margin-top: 7%;
    }

    .navbar-default {
        background: rgba(236, 107, 81, .5) !important;
        position: absolute;
        z-index: 100;
        width: 100%;
        border: none !important;
        height: 50px;
        margin-bottom: 0 !important;
    }

    .table_box table tr td {
        padding: 12px;
    }
}

@media screen and (max-width: 320px) {
    .container {
        width: 300px !important;
    }
}

#gotop.active {
    display: block;
}

#gotop {
    display: none;
    position: fixed;
    border-radius: 5%;
    bottom: 10px;
    right: 15px;
    z-index: 10;
    width: 73px;
    height: 89px;
}

#gotop a {
    width: 83px;
    height: 99px;
    display: block;
}

.backTop {
    width: 63px;
    height: 79px;
    cursor: pointer;
    z-index: 99;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
}

.mui {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
}

.mull_updata {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 999;
    display: none;
}

#phone_btn {
    color: #FFFFFF;
}

.mull {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 999;
    display: none;
}

.app_foot_box {
    padding-top: 10px;
}

.container {
    width: 1920px;
}

.w_310 {
    width: 393px;
    height: 550px;
    margin: 0 auto;
    position: fixed;
    left: 50%;
    background: #FFFFFF;
    top: 200px;
    margin-left: -190px;
    z-index: 99999999999999999;
    background: url(/images/index/login_bj.jpg) no-repeat;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.w_310_action {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form {
    margin-top: 125px !important;
    /* float: left; */
    width: 80%;
    margin: 0px auto;
    font-size: 15px;
}

.form ul li {
    width: 100%;
    height: 48px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    margin-bottom: 10px;
}

.form ul li input {
    height: 45px;
    width: 80%;
    float: left;
    border: none;
    color: #666666;
}

.form ul .text_link {
    border: none;
    line-height: 18px;
    height: 20px;
    margin-top: -10px;
}

.form ul .text_link a:nth-of-type(1) {
    color: #d93f37;
    display: inline-block;
    width: 110px;
    margin-left: 44px;
    border-right: 1px solid;
}

.form ul .text_link a:nth-of-type(2) {
    color: #d93f37;
    display: inline-block;
    margin-left: 15px;
}

.form ul li i {
    display: inline-block;
    float: left;
    line-height: 40px;
    margin: 0px 15px;
}

.jishi {
    float: right;
    background: #ffc600;
    height: 45px;
    border-radius: 6px;
}

.login_btn {
    border: none !important;
}

.login_btn a {
    background: #d93f37;
    display: inline-block;
    width: 100%;
    height: 45px;
    border-radius: 6px;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
}

.w_310 .muee {
    margin-bottom: 50px;
}

.userzhanghu {
    position: relative;
}

.userzhanghu .yan img {
    position: absolute;
    right: 15px;
}

.app_foot {
    width: 100%;
    height: 181px;
    color: #666;
    position: absolute;
    bottom: 15px;
}

.app_foot {
    width: 100%;
    height: 181px;
    color: #666;
    position: absolute;
}

.app_foot_box {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.app_foot_box > div {
    width: 50%;
    float: left;
}

.app_foot_right {
    padding: 2% 0 0 10px;
    width: 45% !important;
}

.app_foot_box > div > img {
    max-width: 90%;
    margin: auto;
    display: block;
}

.app_foot_box > div h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #d93f37;
    font-weight: bold;
}

.app_foot_box .reward {
    margin-top: 5%;
}

.app_foot_box > div ul li {
    font-size: 15px;
    line-height: 23px;
    margin-top: 2%;
}

.app_foot_box .p_c {
    position: relative;
    padding: 2% 0 2% 20%;
}

.app_foot_box .p_c img {
    position: absolute;
    display: block;
    top: 2%;
    left: -1%;
}

.app_foot_box .p_c h5 {
    color: #000000;
    font-size: 20px;
    margin: 8% 1%;
}

.app_foot_box .p_c p {
    color: #d93f37;
    font-size: 15px;
    margin: 5% 3%;
}

.app_foot_box .reward i {
    display: inline-block;
    line-height: 22px;
    width: 22px;
    text-align: center;
    background: #f15c54;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    font-style: inherit;
}

.app_foot_box .reward p {
    display: inline-block;
    font-size: 16px;
    color: #000000;
}

.app_foot_box .reward span {
    color: #d93f37;
}

.w_310_action .login_colse {

    background-position: 0 -18px !important;
    width: 80px !important;
    height: 80px !important;
    background-size: 180% !important;
    display: inline-block;
    position: absolute;
    top: -5px;
    right: -8px;
    cursor: pointer;
}

.muee_bj {
    position: fixed;
    width: 100%;
    top: 0px;
    bottom: 0px;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    display: none;
    z-index: 9999;
}

.show_bd {
    width: 500px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -200px;
    margin-left: -250px;
    background: #FFFFFF;
    color: #666;
    display: none;
    z-index: 10000;
    font-size: 14px;
}

.show_bd_title {
    font-size: 18px;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #666666;
    background: #f00b07;
    color: #fff;
}

.show_bd_box {
    width: 100%;
    float: left;
    height: 355px;
}

.show_bd_box > p {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.show_bd_box ul li {
    margin-bottom: 10px;
    position: relative;
}

.show_bd_box ul li input {
    height: 35px;
    width: 80%;
    text-indent: 10px;
    border: 1px solid #D3D3D3;
}

.show_bd_box ul li a:nth-of-type(1) {
    display: inline-block;
    width: 33%;
    height: 35px;
    line-height: 35px;
    background: #ddd;
    float: left;
    margin-left: 15%;
    background: #f00b07;
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.show_bd_box ul li a:nth-of-type(2) {
    display: inline-block;
    width: 33%;
    height: 35px;
    line-height: 35px;
    background: #ddd;
    float: left;
    margin-left: 10%;
    background: #f00b07;
    color: #fff;
    border-radius: 6px;
    text-align: center;
}

.set_user ul li strong {
    margin-left: 17px;
}

.set_user p {
    padding-top: 50px;
}

.jishi2 {
    position: absolute;
    right: 0px;
    top: 1px;
    height: 35px;
    background: #f00b07;
    color: #fff;
}

.set_user {
    padding: 40px;
}

.show_bd_title .close {

    position: relative;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    transform: rotate(45deg);

    display: inline-block;
    opacity: 1;

}

.show_bd_title .close:after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(270deg);

    -moz-transform: rotate(270deg);

    -o-transform: rotate(270deg);

    -ms-transform: rotate(270deg);

    transform: rotate(270deg);
    opacity: 1;

}

.show_bd_title .close {
    position: absolute;
    right: 0px;
    right: 20px;
    top: 8px;
    display: inline-block;
    /* width: 50px; */
    cursor: pointer;
}

.close2 {

    position: relative;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    transform: rotate(45deg);

    display: inline-block;
    opacity: 1;

}

.close2:after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(270deg);

    -moz-transform: rotate(270deg);

    -o-transform: rotate(270deg);

    -ms-transform: rotate(270deg);

    transform: rotate(270deg);
    opacity: 1;

}

.close3 {
    position: absolute;
    right: 0px;
    right: 20px;
    top: 13px;
    display: inline-block;
    /* width: 50px; */
    cursor: pointer;
}

.close3 {

    position: relative;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    transform: rotate(45deg);

    display: inline-block;
    opacity: 1;

}

.close3:after {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0.3em;

    height: 1.5em;

    background: #fff;

    -webkit-transform: rotate(270deg);

    -moz-transform: rotate(270deg);

    -o-transform: rotate(270deg);

    -ms-transform: rotate(270deg);

    transform: rotate(270deg);
    opacity: 1;

}

.close3 {
    position: absolute;
    right: 0px;
    right: 20px;
    top: 13px;
    display: inline-block;
    /* width: 50px; */
    cursor: pointer;
}

.navbar {
    border-radius: initial;
}

#cnzz_stat_icon_1273176972 {
    display: none;
}

.navbar-nav li {
    float: left;
    margin-left: 10px;
    width: 105px;
    background: #FFFFFF;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
    color: #ba2626;
}
.navbar-nav li:hover{
    background:#ffc600;
}
.loginCon dl dd .loginInput, .loginCon dl dd .loginInput2, .loginCon dl dd .loginInput3 {
    width: 294px;
    height: 34px;
    line-height: 34px;
    border: #cdcdcd solid 1px;
    padding: 0 5px 0 5px;
    color: #9f9f9f;
    font-family: "Microsoft Yahei", "微软雅黑";
}

#email-list {
    width: 102px;
}

.loginCon dl dd {
    display: inline-block;
    font-size: 14px;
    color: #333;
}

.yanzhengma > img {
    position: absolute;
    right: 0px;
}

body .loginCon dl .checkxieyi {
    width: 30px;
}

.loginCon dl dt {
    width: 110px;
    font-size: 14px;
    text-align: right;
    display: inline-block;
    line-height: 36px;
    color: #656565;
}

.loginCon {
    padding-top: 20px;
}

.loginCon .signUp {
    font-family: "Microsoft Yahei", "微软雅黑";
    display: inline;
    float: left;
    line-height: 46px;
    width: 211px;
    height: 46px;
    background: #252525;
    color: #fff;
    text-align: center;
    font-size: 18px;
    margin: 15px 0 50px 150px;
}

.loginCon dl {
    margin-bottom: 15px;
}

.userlogin {
    width: 500px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    /* margin-top: 25%; */
    margin-left: -250px;
    background: #FFFFFF;
    border-radius: 15px;
    margin-top: -260px;
}

.show_mui .show_title {
    text-align: center;
    color: #FFFFFF;
    font-size: 26px;
    background: #cc0d15;
    height: 60px;
    line-height: 60px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.show_mui .show_title span {
    display: inline-block;
    float: right;
    /* line-height: 77px; */
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    z-index: 19;
    position: absolute;
    right: 0px;
}

.show_title label {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.show_mui .show_title span img {

}

#bs-example-navbar-collapse-1 {
    font-size: 14px !important;
}

.show_mui .show_title {
    text-align: center;
    color: #FFFFFF;
    font-size: 26px;
    background: #cc0d15;
    height: 60px;
    line-height: 60px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.login_form {
    padding: 30px;
}

.login_form ul li {
    width: 100%;
    border-radius: 10px;
    background: #f1f1f1;
    height: 75px;
    margin-bottom: 20px;
    position: relative;
    color: #333333;
}

.yanzhengma_zaibei {
    display: none;
    position: relative;
}

.navbar-nav > li > a {
    padding: 10px !important;
}

.login_form ul li i {
    display: inline-block;
    float: left;
    width: 80px;
    height: 75px;
    background: #e2e0e0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: center;
}

.login_form ul li i > img {
    margin-top: 15px;
}

.login_form ul li input {
    height: 75px;
    line-height: 75px;
    border: none;
    background: #f1f1f1;
    outline: none;
    text-indent: 15px;
    width: 80%;
}

.login_form .foot_btn {
    width: 100%;
    margin: 37px auto;
    background: #cc0d15;
    border-radius: 30px;
    height: 58px;
    text-align: center;
    line-height: 58px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
}

#email {
    width: 273px;
}

.get_erweima_h5 {
    display: none;
}

.go_h5zhuce {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .userlogin {
        width: 92%;
        top: 0px;
        left: 0px;
        margin: 0px;
        border-radius: initial;
        margin-left: 4%;
    }

    .app_foot {
        bottom: 0px;
    }

    .app_foot_box {
        width: 100%;
    }

    .app_foot_right {
        padding-left: 40px;
    }

    .get_erweima_h5 {
        padding-left: 20px;
    }

    .go_pczhuce {
        display: none !important;
    }

    .go_h5zhuce {
        display: block !important;
        width: 50%;
        float: left;
    }

    .get_erweima {
        display: none;
    }

    .get_erweima_h5 {
        display: block;
    }

    .get_erweima_h5 strong {
        color: #333;
        font-size: 16px;
    }

    .get_erweima_h5 a {
        display: inline-block;
        background: #d93f37;
        color: #fff;
        width: 100%;
        height: 35px;
        line-height: 35px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .login_form ul li i {
        width: 20%;
    }

    .show_mui .show_title {
        border-radius: initial;
    }

    .loginCon dl dd .loginInput, .loginCon dl dd .loginInput2, .loginCon dl dd .loginInput3 {
        width: 100%;
    }

    .loginCon dl dd {
        width: 72%;
    }

    .h5_mb_img {
        display: none;
    }

    .loginCon .signUp {
        margin: 0px;
        margin-left: 22%;
        margin-bottom: 20px;
        width: 60%;
    }

    .app_foot_right {
        width: 50% !important;
    }

    .loginCon dl dt {
        width: 25%;
    }

    #email {
        width: 58%;
    }

    #validateCode {
        width: 58%;
    }

    #bs-example-navbar-collapse-1 .container {
        background: #eee;
        width: 100%;
    }

    #bs-example-navbar-collapse-1 .container .navbar-nav li {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
    }

    .navbar-default .container-fluid {
        padding: 0px;
        margin: 0px;
    }

    .w_310 {
        width: 98%;
        margin-left: -49%;
        top: 10%;
        background-size: contain;
    }

    .show_bd {
        width: 98%;
        margin-left: -49%;
    }

    .set_user {
        padding: 20px;
    }

    .zhuanshu {
        display: none;
    }

    .show_bd_box > p {
        padding-left: 20px;
    }

    .show_bd_box ul li input {
        width: 70%;
    }

    .form {
        margin-top: 35% !important;
    }

    .form ul .text_link a:nth-of-type(1) {
        margin-left: 0px;
    }

    .app_foot_box > div h3 {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .app_foot_box .p_c {
        padding: 0px;
    }

    .app_foot_box .p_c h5 {
        margin: 0px;
    }

    .app_foot_box > div h3 {
        margin-top: 0px;
    }

    .app_foot_box > div {
        width: 45%;
    }

    .form ul .text_link a:nth-of-type(1) {
        width: 50%;
    }
}

@media screen and (max-width: 320px) {

    .form {
        margin-top: 29% !important;
    }

    .app_foot {
        height: 253px;
    }

    .app_foot_right {
        padding-left: 18px;
    }

    .get_erweima_h5 {
        padding-left: 14px;
    }

    .get_erweima_h5 strong {
        color: #333;
        font-size: 15px;
    }

    .w_310 {
        margin-left: -49%;
    }

}

@media (min-width: 1608px) and (max-width: 1928px) {
    .logo_box {
        margin-left: 10%;
    }
}

#gotop.active {
    display: block;
}

#gotop {
    display: none;
    position: fixed;
    border-radius: 5%;
    bottom: 10px;
    right: 15px;
    z-index: 10;
    width: 73px;
    height: 89px;
}

#gotop a {
    width: 83px;
    height: 99px;
    display: block;
}

.backTop {
    width: 63px;
    height: 79px;
    cursor: pointer;
    z-index: 99;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
}

.backTop:hover {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

.updata_xiugai {
    width: 500px;
    height: 350px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -175px;
    z-index: 10000;
    display: none;
}

.updata_xiugai_title {
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    background: #CD2525;
    color: #FFFFFF;
}

.updata_xiugai_box ul li {
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin-bottom: 15px;
}

.updata_xiugai_box ul li span {
    display: inline-block;
    float: left;
    width: 25%;
    color: #666666;
    text-align: center;
}

.updata_xiugai_box ul li input {
    width: 70%;
    border: 1px solid #D3D3D3;
    height: 40px;
    float: left;
}

.updata_xiugai_box ul li a {
    width: 150px;
    background: #CD2525;
    color: #FFFFFF;
    border-radius: 7px;
    margin: 0 auto;
    text-align: center;
    display: inherit;
}

.updata_xiugai_box {
    padding: 20px;
}

.updata_xiugai_title {
    position: relative;
}