@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-family: "Helvetica Neue",Helvetica,Arial,"Microsoft YaHei",微软雅黑,sans-serif;
}

html {font-size: 62.5%;/*10 ÷ 16 × 100% = 62.5%*/}
body {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    -webkit-highlight: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: #FFFFFF;
}
.zhezhao{position: absolute;width: 100%;height: 100%;background-color:rgba(0,0,0,0.7);z-index: 9999; }
.zhezhaoimg{width: 100%;float: right;}
.header {
    width: 100%;
    height: auto;
    background-image: url("./bg.png");
    background-repeat: repeat-x;
    background-position: center bottom;
    text-align: center;
}

.header img {
    width: 250px;
    height: auto;
    margin-top: 60px;
}

.header p {
    color: #e9f5f5;
    margin-top: 20px;
    font-size: 28px;
    vertical-align: top;
}

.header button {
    display: inline-block;
    text-decoration: none;
    margin-top: 40px;
    margin-bottom: 80px;
    width: 80%;
    height: 80px;
    border: 2px solid #FFFFFF;
    text-align: center;
    line-height: 80px;
    color: #FFFFFF;
    background-color:#00000000;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.header a {
    display: inline-block;
    text-decoration: none;
    margin-top: 40px;
    margin-bottom: 80px;
    width: 80%;
    height: 80px;
    border: 2px solid #FFFFFF;
    text-align: center;
    line-height: 80px;
    color: #FFFFFF;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.list {
    padding: 20px;
}

.item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   list-style-type: none;
    height: 120px;
}

.item_photo {
    float: left;
    width: 100px;
    height: 120px;
    padding: 20px 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.item_photo img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.item_info {
    margin-left: 20px;
    position: relative;
    height: 120px;
    padding-top:20px;
    padding-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.item_info:after {
    content: '';
    display: block;
    clear: both;
    position: absolute;
    top:120px;
    left: 0;
    width: 100%;
    height: 1px;
    background:  #DDDDDD;
}

.item_master {
    float: left;
    width: 30%;
    display: inline-block;
}

.item_user {
    /*单行文字溢出*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item_user, .item_time {
    line-height: 40px;
    font-size: 22px;
}

.item_user {
    font-weight: bold;
}

.item_time {
    color: #949494;
}

.item_desc {
    float: right;
    line-height: 80px;
}

.item_desc p {
    color: #949494;
    font-size: 22px;
}
.modal {
    bottom: 0;
    left: 0;
    outline: 0 none;
    overflow-x: auto;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050;
    display: none;
}
    
.modal-dialog {
    margin: 0 auto;
    position: relative;
    width: 450px;
    height: 660px;
    background: url(../img/hongbao-bg.png) no-repeat center center;
    background-size: contain;
}
.modal-content {
    padding: 0 15px;
    border-radius: 0;
    position: relative;
    height: 100%;
}
.modal-header {
    min-height: 16.43px;
    padding: 0 15px;
}
#modal .modal-body {
    min-height: 460px;
}
.modal-body {
    padding: 20px;
    position: relative;
    text-align: center;
}
.modal-body p {
    color: #999;
    line-height: 2;
    font-size: 2rem;
}
.modal .logo {
    margin-top: 150px;
    color: #fff;
    margin-bottom: 10px;
    font-size: 3.5rem;
}
.modal-slogan {
    color: #fff !important;
    font-family: "楷体","楷体_GB2312";  
}
.actions {
    position: absolute;
    bottom: 50px;
}
.hongbao-btn {
    display: none;
    background: url(../img/hongbao-btn.png) no-repeat center center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 1.5rem;
    color: #fff;
}
.rotate {
    -webkit-animation: anim 0.7s infinite;
    animation: anim 0.7s infinite;
}

@-webkit-keyframes anim {
    from {-webkit-transform: rotateY(0deg);}
    to {-webkit-transform: rotateY(360deg);}
}

@keyframes anim {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
}

#overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}
.close-btn {
    background: url(../img/close-btn.png) no-repeat center center;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 30px 0;
}