/* 通配符选择器，设置外边距和内边距为0 */
* {
    margin: 0;
    padding: 0;
}
.business_body{
    background: url("../imgs/1.jpeg") no-repeat center center fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
}
.inspect_body{
    background: url("../imgs/2.jpeg") no-repeat center center fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
}
.manage_body{
    background: url("../imgs/bj.jpg") no-repeat center center fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: scroll;
}

/* 取消列表前面的圆点 */
li {
    list-style-type: none;
}

/* 设置外部div样式 */
.tab {
    width: 350px;
    /*margin:40px auto;*/
    margin-top: 50px;
    margin-left: 128px;
    /*margin-bottom: 50px;*/
    border-radius: 5px; /* 设置圆角半径 */
}


/* 设置菜单栏的样式 */
.tab_list {
    height: 40px;
    /*border: 1px solid #ccc;*/
    background-color: #FFFFFF;
    border-radius: 5px; /* 设置圆角半径 */
}

/* 设置列表的样式 */
.tab_list li {
    width: 175px;
    float: left;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    /*padding: 0 40px;*/
    text-align: center;
    cursor: pointer;
    border-radius: 5px; /* 设置圆角半径 */
}

/* 设置商品介绍的样式 */
.current {
    background-color: #38A0FC;
    color: #fff;
}

/* 设置后4个显示的内容先隐藏起来 */
.item {
    /*height: 160px;*/
    display: none;
    /*padding: 20px 0px 0px 0px;*/
}
.unit{
    width: 340px;
    padding: 10px 0px;
    border-bottom: 1px solid #C4C4C4;
    display: flex;
    margin: auto; /* 通过设置margin为auto来实现居中 */
}
.unit2{
    width: 340px;
    padding: 10px 0px;
    border-bottom: 1px solid #C4C4C4;
    display: flex;
    margin: auto; /* 通过设置margin为auto来实现居中 */
}
.btn_login{
    width: 350px;
    padding: 30px 0px;
    text-align: center; /* 设置文本水平居中 */

}
.btn_register{
    width: 350px;
    padding: 0px 0px 30px 0px;
    text-align: center; /* 设置文本水平居中 */

}
.btnYzm{
    width: 125px;
    height: 35px;
    font-size: 15px;
    color: white;
    border:1px #38A0FC solid;
    /*background-color: #38A0FC;*/
    border-radius: 5px; /* 设置圆角半径 */
    background-color: transparent;
    text-align: center; /* 设置文本水平居中 */
    cursor: pointer;
}
.loginbtn{
    width: 340px;
    height: 40px;
    font-size: 15px;
    color: white;
    border:1px #38A0FC solid;
    /*background-color: #38A0FC;*/
    border-radius: 5px; /* 设置圆角半径 */
    background-color: transparent;
    text-align: center; /* 设置文本水平居中 */
    cursor: pointer;
}
.inputCss{
    border:0;
    /*display: none;*/
    /*position: absolute;*/
    /*overflow: hidden;*/
    width: 100%;
    height: 35px;
    padding: 0px 5px;
    background-color: transparent;
    font-size: 15px;
    transition:background-color 5000s ease-in-out 0s;/*背景不显示*/
    -webkit-box-shadow: 0 0 0px 0px #fff inset;/*背景阴影设置*/
    /*-webkit-text-fill-color: #fff;!*input框字体颜色*!*/
    /*caret-color: #fff;!*改变光标的颜色*!*/
}
.inputYzm{
    border:0;
    width: 220px;
    height: 35px;
    padding: 0px 5px;
    background-color: transparent;
    font-size: 15px;
    transition:background-color 5000s ease-in-out 0s;/*背景不显示*/
    -webkit-box-shadow: 0 0 0px 0px #fff inset;/*背景阴影设置*/
}

input::-webkit-input-placeholder{
    color: #A8A8A8;
}
input:-moz-placeholder{
    color: #A8A8A8;
}
input::-moz-placeholder{
    color: #A8A8A8;
}
input:-ms-input-placeholder{
    color: #A8A8A8;
}