body, html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    position: relative;
}

html {
    background: #fff;
    max-width: 750px;
}

input[type=text], input, select, textarea {
    margin: 0;
}

ul, li, p, div, h4 {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*登录页*/
.mui-wrapper {
    width: 100%;
    height: 100%;
    background: #f3f3f3;
}

.mui-wrapper-width {
    width: 5.6rem;
    display: block;
    margin: 0 auto;
}

.mui-wrapper-header {
    width: 100%;
    height: 0.88rem;
    background: #8cc419;
    color: #fff;
    font-size: 0.32rem;
    text-align: center;
    line-height: 0.88rem;
}

.mui-wrapper-footer {
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mui-wrapper-footer p {
    margin: 0;
    font-size: 0.28rem;
    color: #cccccc;
    text-align: center;
    margin: 0.05rem 0;
}

.mui-wrapper-form {
    background: #fff;
}

.mui-wrapper-button {
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mui-wrapper-button button {
    background: #8cc419;
    height: 0.82rem;
    border-radius: 0.4rem;
    border: 0;
    color: #fff;
    font-size: 0.34rem;
}

.mui-wrapper-logo {
    text-align: center;
    padding-top: 0.4rem;
}

.mui-wrapper-logo image {
    display: inline-block;
}

.mui-wrapper-logo h4 {
    font-size: 0.4rem;
    color: #492b19;
    margin: 0.1rem 0 1rem;
}

.mui-wrapper-item {
    padding: 0.25rem 0;
    position: relative;
}

.mui-wrapper-item input {
    margin: 0;
    border: 0;
    height: 0.8rem;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
}

.mui-wrapper-item .mui-wrapper-input {
    padding-left: 0.55rem;
}

.mui-wrapper-span {
    width: 0.55rem;
    height: 0.8rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}

.mui-wrapper-span img {
    width: 0.35rem;
    margin-bottom: 0.1rem;
}

.mui-wrapper-span input {
    width: 0.36rem;
    height: 0.36rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.mui-wrapper-span i {
    display: block;
    width: 0.36rem;
    height: 0.36rem;
    background: url(../images/login-jz.png) no-repeat;
    background-size: 100% auto;
}

.mui-wrapper-item label {
    color: #999999;
}

.mui-wrapper-span input[type='checkbox']:checked + i {
    background-position: 0 -0.36rem;
}

/*首页*/

.home-header h1 input::-webkit-input-placeholder { /* WebKit browsers */
    color: rgba(255, 255, 255, 0.8);
}

.home-header h1 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.8);
}

.home-header h1 input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.8);
}

.home-header h1 input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: rgba(255, 255, 255, 0.8);
}

.home-header {
    height: 1.2rem;
    background: #8cc419;
}

.home-wrapper {
    padding-top: 2.4rem;
    overflow-y: auto;
    background: #f3f3f3;
    height: 100%;
}

.home-header h1 {
    /*padding: 0.4rem 0;*/
}

.home-header h1 input {
    text-align: center;
    background: rgba(27, 104, 0, 0.25);
    border: 0;
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 0.72rem;
    height: 0.72rem;
    font-size: 0.3rem;
    padding: 0 0.6rem 0 0.3rem;
}

.home-tab {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.home-tab ul {
    /*overflow: hidden;*/
    display: inline-block;
}

.home-tab ul li {
    float: left;
}

.home-tab li a {
    color: rgba(255, 255, 255, .7);
    font-size: 0.28rem;
    display: block;
    padding: 0 0.1rem;
    line-height: 0.8rem;
    margin: 0 0.15rem;
}

.home-tab .home-active a {
    font-weight: 600;
    color: #fff;
    position: relative;
}

.home-tab .home-active a:after {
    content: "";
    width: 0.6rem;
    height: 0.06rem;
    background: #fff;
    border-radius: 0.06rem;
    display: block;
    position: absolute;
    bottom: 0.05rem;
    left: 0;
    right: 0;
    margin: auto;
    animation: afterD 0.5s forwards;
}

@keyframes afterD {
    0% {
        width: 0;
        opacity: 0;
    }
    1% {
        opacity: 1;
        width: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.home-main {
    padding: 0.3rem 0.3rem 0;
}

.home-content {

}

.home-main-img {
    width: 100%;
    border-radius: 0.1rem;
    overflow: hidden;
    box-shadow: 0 5px 10px 1px rgba(99, 142, 35, 0.2);
}

.home-main-img img {
    width: 100%;
    display: block;
}

.home-item {
    margin: 0.3rem 0;
    display: none;
}

.home-item-active {
    display: block;
}

.home-item-main {
    background: #fff;
    border-radius: 0.1rem;
    box-shadow: 0 0 10px 1px rgba(99, 142, 35, 0.05);
    padding: 0.36rem;
    margin-top: 0.2rem;
}

.home-item-title {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 0.14rem;
}

.home-item-title h4 {
    margin: 0.16rem 0;
    font-size: 0.26rem;
    font-weight: 500;
    position: relative;
    padding-left: 0.34rem;
}

.home-item-title h4:before {
    content: "";
    width: 0.06rem;
    height: 100%;
    background: #8cc419;
    display: block;
    position: absolute;
    top: 0;
    left: 0.1rem;
    border-radius: 0.06rem;
}

.home-content-item {
    font-size: 0.24rem;
    margin: 0.26rem 0;
}

.home-content-item:last-child {
    margin-bottom: 0;
}

.home-item-left {
    float: left;
}

.home-item-right {
    float: right;
}

.home-item-over {
    overflow: hidden;
}

.home-item-grey {
    color: #999999;
}

.home-right-but {
    width: 0.4rem;
    height: 0.36rem;
    background: url(../images/right-flag.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0.65rem;
    right: 0.3rem;
    opacity: 0.8;
}

.home-wrapper .mui-bar .mui-title {
    left: 1.05rem;
    right: 1.05rem;
    height: 0.72rem;
    top: 0.45rem;
    line-height: 0.72rem;
}

.mui-title-val {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    line-height: 0.72rem;
}

.mui-title-val span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.3rem;
}

.mui-title-val .mui-icon {
    font-size: 0.4rem;
}

.mui-iframe-wrapper iframe {
    display: block;
}

.home-page {
    width: 100%;
    height: 100%;
    background: #f3f3f3;
}

.home-iframe-wrapper, .home-detail-wrapper {
    position: absolute;
    top: 2.4rem;
    width: 100%;
    background: #f3f3f3;
    display: none;
    overflow-y: auto;
}

.home-iframe-wrapper > div, .home-detail-wrapper > div {
    padding: 0.3rem;
}

.home-iframe-wrapper .home-item-title h4:before, .home-detail-wrapper .home-item-title h4:before {
    width: 0.24rem;
    height: 0.17rem;
    background: url(../images/list-icon.png) no-repeat;
    background-size: 100% 100%;
    top: 0.02rem;
    left: 0;
    border-radius: 0;
}

.home-iframe-wrapper .home-item-grey {
    padding: 0.36rem 0.36rem 0;
}

.home-content-h5 {
    height: 0.6rem;
    line-height: 0.6rem;
    background: #f3f3f3;
}

.home-content-h5:hover {
    background: #f6faed;
    color: #8cc419;
}

.home-content-h5:hover > div:before {
    background: #8cc419;
}

.home-iframe-wrapper .home-item-main {
    padding: 0.36rem 0;
}

.home-content-h5 > div {
    position: relative;
    padding-left: 0.2rem;
}

.home-content-h5 > div:before {
    width: 0.1rem;
    height: 0.1rem;
    content: "";
    display: block;
    background: #c1c3c8;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 0.16rem;
}

.home-content-p {
    padding: 0 0.36rem;
}

.home-detail-wrapper .home-item-grey {
    padding: 0.26rem 0.36rem 0.10rem;
}

.home-detail-wrapper .home-item-grey p {
    color: #333333;
    font-size: 0.2rem;
    text-indent: 2em;
    /*padding: 0.3rem 0;*/
}

.home-detail-wrapper .home-item-title {
    padding-bottom: 0.1rem;
}

.home-h4 {
    margin-top: 0.3rem;
}

.home-h4 span {
    font-size: 0.18rem;
    color: #999999;
}

.mui-bar .home-back {
    position: absolute;
    top: 0.55rem;
    padding-top: 0;
    color: #fff;
    opacity: 0.8;
    display: none;
}

.right-popup {
    width: 2.46rem;
    background: #ffffff;
    border-radius: 0.1rem;
    position: absolute;
    right: 0.2rem;
    top: 1.26rem;
    z-index: 22;
    display: none;
}

.right-popup a {
    font-size: 0.22rem;
    line-height: 0.6rem;
    text-align: center;
    display: block;
    color: #666666;
}

.right-popup:before {
    content: "";
    display: block;
    width: 0.05rem;
    height: 0.05rem;
    border-color: #fff;
    border-top-width: 0.05rem;
    border-left-width: 0.05rem;
    border-right-width: 0;
    border-bottom-width: 0;
    border-style: solid;
    position: absolute;
    top: -0.05rem;
    right: 0.2rem;
    transform: rotate(45deg);
}

.right-popup a:hover {
    color: #8cc419;
    background: rgba(140, 196, 25, 0.1);
}

.wrapper-page {
    height: 100%;
    padding-top: 0.88rem;
    background: #f3f3f3;
}

.wrapper-page .mui-bar {
    height: 0.88rem;
    background: #8cc419;
}

.mui-bar .mui-title, .mui-bar-nav.mui-bar .mui-icon {
    color: rgba(255, 255, 255, .8);
    font-size: 0.42rem;
}

.mui-bar .mui-title {
    font-size: 0.32rem;
}

.wrapper-page-main {
    height: 100%;
}

.wrapper-status {
    position: relative;
    padding: 0.5rem;
    background: #fff;
}

.wrapper-status .wrapper-status-span {
    display: block;
    padding-left: 1.2rem;
}

.wrapper-status select {
    border: 1px solid #b9b9b9 !important;
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.2rem;
}

.wrapper-status label {
    position: absolute;
    line-height: 0.8rem;
    top: 0.5rem;
    left: 0.36rem;
    width: 1.2rem;
    text-align: right;
    font-size: 0.24rem;
}

.wrapper-status-but {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.2rem;
    height: 0.8rem;
    padding: 0;
    line-height: 0.8rem;
    background: #8bc600;
    color: #fff;
    border: 0;
}

.problemType {
    overflow-y: auto;
}

.problemType-title {
    line-height: 0.6rem;
    font-size: 0.24rem;
    background: rgba(102, 102, 102, 0.1);
    position: relative;
    padding: 0 0.5rem;
}

.problemType-main {
    padding: 0.3rem 0.5rem 0.4rem;
    background: #ffffff;
}

.problemType-main span {
    font-size: 0.2rem;
    display: inline-block;
}

.problemType-main .home-item-left span {
    color: #666666;
}

.problemType-main span button {
    width: 0.8rem;
    height: 0.4rem;
    color: #4785e4;
    font-size: 0.2rem;
    padding: 0;
    line-height: 0.4rem;
    text-align: center;
    border-radius: 0.34rem;
    margin-left: 0.26rem;
}

.problemType-main .home-item-left span {
    margin-right: 0.26rem;
}

.problemType-title:before {
    width: 0.1rem;
    height: 0.1rem;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.26rem;
    margin: auto;
    background: #666666;
    border-radius: 50%;
}

.color-gray {
    color: #999999;
}

.color-yellow {
    color: #f08200;
}

.color-red {
    color: #e41f1f;
}

.save-but {
    text-align: center;
}

.save-but button {
    width: 6rem;
    height: 0.8rem;
    line-height: 0.8rem;
    background: #8cc419;
    border-radius: 0.8rem;
    padding: 0;
    color: #fff;
    font-size: 0.34rem;
    display: inline-block;
}

.mui-btn.mui-active:enabled, .mui-btn:enabled:active, button.mui-active:enabled, button:enabled:active, input[type=button].mui-active:enabled, input[type=button]:enabled:active, input[type=reset].mui-active:enabled, input[type=reset]:enabled:active, input[type=submit].mui-active:enabled, input[type=submit]:enabled:active {
    background: #7eb115;
}

.wrapper-page-form {
    background: #fff;
}

.wrapper-page-span {
    margin: 0.26rem 0.38rem;
    padding-left: 1.5rem;
    position: relative;
}

.wrapper-page-span>label {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0.78rem;
    font-size: 0.24rem;
    width: 1.5rem;
    text-align: right;
}

.consult-form-span input, .consult-form-span select {
    height: 0.78rem;
    line-height: 0.78rem;
    padding: 0 0.2rem;
    border: 1px solid #e7e7e7 !important;
    font-size: 0.24rem;
}
input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea{
    margin: 0;
}
.consult-form-span textarea {
    border: 1px solid #e7e7e7;
    height: 2.4rem;
    font-size: 0.24rem;
    padding: 0 0.2rem;
}

.comment-bot > div {
    margin: 0.2rem 0;
}

.retrieval {
    text-align: right;
}

.retrieval > div {
    display: inline-block;
    font-size: 0.20rem;
}

.retrieval-r {
    margin-left: 0.2rem;
}

.retrieval-r img {
    width: 0.26rem;
}

.comments {
    position: relative;
}

.comment-bot label {
    font-size: 0.28rem;
    display: block;
    margin-bottom: 0.2rem;
    color:#333;
}

.comments textarea {
    width: 100%;
    height: 2rem;
    color:#333;
    font-size: 0.28rem;
}

.publish {
    text-align: center;
}

.publish button {
    display: inline-block;
    width: 100%;
    padding: 0.1rem 0;
    font-size: 0.24rem;
    background: #4383e7;
    border: 0;
    color: #fff;
    border-radius: 0.1rem;
}

.comment-num {
    font-size: 0.26rem;
    color: #333;
}
.comment-main{
    font-size: 0.2rem;
    overflow: hidden;
}
.comment-main-l{
    float: left;
}
.comment-main-r{
    float: right;
}
.comment-content{
    font-size: 0.24rem;
    color:#333;
    line-height:0.28rem;
}
.home-item-title h4 button{
    float: right;
    border:0;
    font-size: 0.2rem;
    border: 0;
    background: rgba(0, 0, 0, 0)!important;
    outline: none;
    cursor: pointer;
    color: #8cc419!important;
    padding: 0;
}
.commentMsg>div{
    margin: 0.2rem 0;
}
.home-attachment{
    margin: 0.2rem 0;
    text-align: left;
    line-height: 1.5;
}
.home-attachment>span{
    display: inline-block;
}
.home-attachment label{
    font-size: 0.2rem;
}
.home-attachment a{
    font-size: 0.2rem;
    text-decoration: underline;
}
.consult-form-span label{
    height: 0.78rem;
    line-height: 0.78rem;
    padding: 0 0.1rem;
    font-size: 0.24rem;
    display: inline-block;
}
.personal-span{
    overflow:hidden;
    display: inline-block;
    margin-right: 0.2rem;
}
.personal-span-float{
    float: left;
}
.personal-span-img{
    width: 3rem;
    height: 3rem;
    overflow: hidden;
    border:1px solid #cecece;
    background: #cccccc;
    margin: 0.5rem auto;
}
.personal-span-img img{
    width: 100%;
}


* {
    margin: 0;
    padding: 0;
}

/*蓝色按钮,绝对定位*/
.blueButton {
    position: absolute;
    display: block;
    width: 80px;
    height: 40px;
    border:1px solid #cecece;
    background-color: #FFFFFF;
    color: #333;
    text-decoration: none;
    text-align: center;
    font: normal normal normal 16px/40px 'Microsoft YaHei';
    cursor: pointer;
    border-radius: 4px;
}

.blueButton:hover {
    text-decoration: none;
}

/*自定义上传,位置大小都和a完全一样,而且完全透明*/
.myFileUpload {
    position: absolute;
    display: block;
    width: 100px;
    height: 40px;
    opacity: 0;
}

/*显示上传文件夹名的Div*/
.show {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 30px;
    font: normal normal normal 14px/30px 'Microsoft YaHei';
}
.header-h4{
    height: 2rem;
    padding: 0;
    background:#fff;
}
.header-h4 h4{
    line-height: 1rem;
    text-align: center;
    color:#fff;
    font-weight: 500;
    background: #0075c7;
    font-size: 0.36rem;
}
.header-h4 .home-active a{
    color:#0075c7;
    font-weight: 400;
}
.header-h4 li a{
    color:#282828;
    font-size: 0.3rem;
}
.mui-bar-nav.header-h4 .home-back {
    top: 0.24rem;
    margin: 0;
}
.header-h4+.mui-content{
    padding-top: 2rem;
}
.header-h4 ul{
    display: block;
    overflow: hidden;
}
.header-h4 li{
    width: 50%;
    border-bottom:2px solid #fff;
}
.header-h4 .home-active{
    border-bottom:2px solid #0075c7;
}
.header-h4+.mui-content .home-items{
    padding: 0 0.2rem;
}
@media only screen and (min-width: 750px) {  html {
        height: 1334px;
        margin: 0 auto;
    }

    .mui-bar-nav {
        width: 750px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 330px) {
    .mui-wrapper-button {
        height: 2rem;
    }
}