html {
	height: 100%;
}
body {
	height: 100%;
	width: 100%;
    background-color: #E3E7E8;
}
.header{
	background: rgb(250, 80, 131);
	height: 40px;
	width: 100%;
	/*overflow: hidden;*/
	font-size: 12px;
	color: white;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;

    height: 50px;
    font-size: 15px;

    padding: 0 5%;
    /*width: 96%;*/

}
.header .left-view{
	display: flex;
	flex: 1;

    /*height: 30px;*/
}
.header .left-view .right-line{
    border-right: solid 1px white;
    height: 24px;
    /* margin-top: 15px; */
    margin-left: 20px;
    margin-right: 20px;
    display: inline-flex;
    margin-top: 3px;
    margin-bottom: 3px;
}
.header .left-view .logo2{
    cursor: pointer;
}
.header-view {
    width: 91%;
    min-width: 800px;
    height: 45px;
    margin: 2.5% 4.5% 45px;
    display: flex;
}
.column-view {
	width: calc(50% - 2px);
    min-width: 390px;
    height: 100%;
    display: flex;
}
.column-view .activity-list,
.column-view .activity-join,
.column-view .activity-push {
    cursor:pointer;
    width: calc(33.3% - 1px);
    min-width: 130px;
    height: 100%;
    margin-left: 1px;
    background-color: #FEFFFF;
    text-align: center;
    line-height: 45px;
}
.column-view .activity-list {
	margin-left: 0;
    background-color: #EB6A99;
    border-radius: 5px 0 0 5px;
    color: #fff;
}
.column-view .activity-push {
    border-radius: 0 5px 5px 0;
}
.activity-create {
	cursor:pointer;
    width: 10.5%;
    min-width: 130px;
    height: 100%;
    background-color: #EB6A99;
	/*蓝色*/
	/*background-color: #4AB9FB;*/
	color: #fff;
    text-align: center;
    line-height: 45px;
    margin-left: 4.5%;
	border-radius: 5px;
}
.search-view {
    width: 30.5%;
    min-width: 220px;
    height: 100%;
    margin-left: 4.5%;
    display: flex;
}
.search-view .key-word {
	width: 100%;
    min-width: 170px;
    height: 100%;
    background-color: #FEFFFF;
    text-align: left;
    line-height: 45px;
    padding-left: 10px;
    border-radius: 5px 0 0 5px;
    border-style: none;
    outline:medium;
}
.search-view .search-btn {
    cursor:pointer;
    min-width: 50px;
    height: 100%;
    background-color: #CDCECF;
    text-align: center;
    line-height: 45px;
    border-radius: 0 5px 5px 0;
}
.list-view,
.join-view,
.push-view {
	width: 95%;
	margin-left: 4.5%;
    min-width: 840px;
    flex-wrap: wrap;
    display: flex;
	padding-bottom: 20px;
}
.list-view li,
.join-view li,
.push-view li {
    width: 25%;
    min-width: 280px;
	padding-right: 4.5%;
	padding-bottom: 4%;
    /*padding: 0 0 40px 45px;*/
    /*margin-right: 20px;*/
}
.list-item {
    /*width: 45%;*/
    min-width: 240px;
    min-height: 220px;
    /*float: left;*/
    background-color: #fff;
    border-radius: 5px;
	padding-bottom: 10px;
}
.verify {
    position: relative;
    /*width: 45%;*/
	margin-top: -271px;
	min-width: 240px;
	min-height: 271px;
    /*float: left;*/
    /*margin: 0 0 40px 45px;*/
    background-color: rgba(0, 0, 0, 0.6);
    /*filter: alpha(Opacity=60);
    -moz-opacity:0.6;
    opacity: 0.6;*/
    border-radius: 5px;
    z-index: 1;
    display: none;
    align-items: center;
    padding-top: 8%;
}
.password {
	margin: 0 auto;
	width: 80%;
    height: 175px;
    margin-top: 30px;
    background-color: #F1F2F3;
    z-index: 2;
    border-radius: 15px;
    text-align: center;
}
.password .p1 {
	line-height: 16px;
	padding-top: 20px;
	color: gray;
}
.password .p2 {
	line-height: 16px;
	margin: -5px 0 15px 0;
	color: gray;
}
.pw-input {
	text-align: center;
    width: 80%;
    height: 40px;
    margin: 0 auto;
	font-size: 16px;
}
.pw-confirm {
	cursor: pointer;
	border-top: 1px solid gray;
	margin-top: 20px;
	text-align: center;
	line-height: 40px;
}
.item-info {
    cursor:pointer;
    padding: 10px 20px 10px 20px;
    /*width: 45%;*/
    /*min-width: 380px;*/
}
.item-title {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    color: #EB6A99;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.item-content {
    /*width: 45%;*/
    /*min-width: 360px;*/
	height: 80px;
	min-height: 80px;
    font-size: 14px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.item-more {
    cursor:pointer;
    line-height: 40px;
    /*margin-right: 15px;*/
    margin-left: 55%;
    color: gray;
	text-align: right;
}
.item-footer {
    /*width: 90%;*/
    /*min-width: 380px;*/
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 15px;
    border-top: 1px solid #E3E7E8;
}
.item-head {
    width: 30px;
	min-width: 30px;
    height: 30px;
    border-radius: 15px;
}
.item-name {
	width: calc(55% - 60px);
    min-width: 80px;
    margin-left: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	color: gray;
}
.item-num {
	width: calc(45% - 15px);
    min-width: 95px;
    margin-left: 5px;
	color: gray;
	text-align: right;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.item-join {
    cursor:pointer;
    /*min-width: 120px;*/
	width: 90%;
	margin-left: 5%;
    height: 30px;
    color: #EB6A99;
    border: 1px solid #EB6A99;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
}
.item-joined {
    cursor:pointer;
	width: 90%;
	margin-left: 5%;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #EB6A99;
}
.create-view {
	width: 91%;
	margin-left: 4.5%;
	min-width: 840px;
    min-height: 580px;
    background: #fff;
    /*margin: 30px 45px 45px 45px;*/
    border-radius: 10px;
    display: none;
	height: calc(100% - 260px);
}
.create-title,
.create-pw {
    min-width: 700px;
    padding-top: 20px;
    margin: 0px 45px;
    display: flex;
}
.create-title p,
.create-pw p {
    line-height: 32px;
    margin: 0;
}
.title-input,
.password-input {
    margin-left: 15px;
	width: 250px;
	font-size: 12px;
	line-height: 24px;
    padding: 5px;
    border: 1px solid #000;
}
.create-content {
    width: 85%;
    min-width: 700px;
    margin: 20px 45px;
    display: flex;
	flex: 1;
	height: calc(100% - 300px);
}
.create-content p {
    line-height: 32px;
    margin: 0;
}
.content-input {
    border: 1px solid #000;
    margin-left: 15px;
    min-width: 600px;
    min-height: 300px;
    padding: 5px;
    width: 70%;
	height: 100%;
}
.create-btn {
    cursor: pointer;
    width: 100px;
    height: 30px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #EB6A99;
    margin: 20px 90px;
}
.details-view {
    width: 90%;
    min-width: 800px;
    min-height: 500px;
    background: #fff;
    margin: 30px 4.5% 45px 4.5%;
    border-radius: 10px;
    display: none;
	height: calc(100% - 260px);
}
.details-back {
    cursor:pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 20px;
    color: #EB6A99;
    border: 1px solid #EB6A99;
    text-align: center;
    line-height: 27px;
    margin: 20px;
}
.details-title {
	/*width: calc(100% - 500px);*/
	width: calc(100% - 110px);
	font-size: 20px;
	line-height: 40px;
	height: 80px;
    text-align: center;
    padding: 20px;
    color: #EB6A99;
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.details-operate {
	cursor:pointer;
	position: absolute;
    float: right;
    /*margin: -45px 45px;*/
    display: none;
	width: 100px;
    height: 30px;
    color: #EB6A99;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
	border: 1px solid #EB6A99;
    right: calc(4.5% + 45px);
    /*margin-top: -45px;*/
}
.details-delete {
	display: none;
	cursor:pointer;
	position: absolute;
    float: right;
    /*margin: -45px 45px;*/
    display: none;
	width: 100px;
    height: 30px;
    color: #EB6A99;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
	border: 1px solid #EB6A99;
    right: calc(4.5% + 145px);;
    /*margin-top: -45px;*/
}
.details-edit {
    cursor:pointer;
	position: absolute;
    float: right;
    /*margin: -45px 45px;*/
    display: none;
	width: 80px;
    height: 30px;
    color: #EB6A99;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
	border: 1px solid #EB6A99;
    right: calc(4.5% + 45px);
    /*margin-top: -45px;*/
}
.details-content {
    width: calc(100% - 90px);
    min-height: 200px;
	height: 50%;
    font-size: 16px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 6;*/
    overflow: hidden;
    margin: 40px 45px;
	padding-bottom: 20px;
}
.details-member {
    display: flex;
    margin-top: 15px;
    border-top: 1px solid gray;
    padding: 15px 45px;
    margin: 5px;
}
.details-name,
.details-num,
.member-name {
	color: gray;
}
.details-num {
    margin-left: 40px;
}
.member-list {
    width: 90%;
    min-width: 710px;
    flex-wrap: wrap;
    display: flex;
    margin: 0 45px;
    padding-bottom: 20px;
}
.member-list li{
	display: flex;
	width: 60px;
	height: 70px;
}
.member-item {
	width: 60px;
	height: 70px;
}
.member-head {
    cursor:pointer;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin: 10px 0 10px 15px;
}
.member-name {
    width: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: center;
}
.member-cut {
    cursor:pointer;
    position: relative;
	margin-top: 5px;
	margin-left: -25px;
    width: 15px;
    height: 15px;
    border-radius: 7.5px;
    text-align: center;
    line-height: 13px;
    background: red;
    display: none;
    color: #fff;
    font-size: 13px;
}
.title-icon {
    height: 10px;
    margin-bottom: 3px;
}
.bc-alert-view .bc-alert-msg{
    min-height: 100px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: solid 1px #e1e1e1;
    color: #333;
    font-size: 16px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 35% !important;
    max-height: 300px;
    overflow: auto;
}
.join-owner,
.join-chat {
    position: absolute;
    cursor: pointer;
    width: 100px;
    height: 30px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    line-height: 30px;
    background-color: #EB6A99;
    right: calc(4.5% + 45px);
    margin-top: -5px;
}
.join-owner {
	right: calc(4.5% + 165px);
}
.details-pw-shadow {
	height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
	display: none;
}
.details-verify {
    position: absolute;
    width: 33%;
	top: 25%;
	left: 33%;
	margin: 0 auto;
	min-width: 240px;
	min-height: 191px;
    background-color: #F1F2F3;
    border-radius: 5px;
    z-index: 9001;
	text-align: center;
	padding-top: 30px;
}
.details-password {
	margin: 0 auto;
	width: 80%;
    height: 175px;
    margin-top: 30px;
    background-color: #F1F2F3;
    border-radius: 15px;

}
.details-password .p1 {
	line-height: 16px;
	padding-top: 20px;
	color: gray;
}
.details-password .p2 {
	line-height: 16px;
	margin: -5px 0 15px 0;
	color: gray;
}
.details-pw-input {
	text-align: center;
    width: 80%;
    height: 40px;
    margin: 0 auto;
	font-size: 16px;
}
.details-pw-confirm {
	cursor: pointer;
	border-top: 1px solid gray;
	margin-top: 20px;
	text-align: center;
	line-height: 40px;
}
.punch-view {
	display: flex;
	padding-top: 20px;
	margin: 0px 90px;
}
.punch-btn {
	cursor: pointer;
	width: 100px;
	height: 30px;
	color: #fff;
	border-radius: 5px;
	text-align: center;
	line-height: 30px;
	background-color: #aaa;
	/* #EB6A99; */
	/* margin: 20px 90px; */
}
.punch-input {
	display: none;
    margin-left: 40px;
}

/*******************yyy********************/
.rongBtn {
    position: fixed;
    bottom: 0;
    /*left: 0;*/
    right: 0;
    width: 230px;
    height: 40px;
    line-height: 40px;
    background: url(../../../cxyteam_forum/images/webBg.png) 0 0/10px auto repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    display: none;
}
.rongBtn .arrow {
    background: url(../../../cxyteam_forum/images/icon.png) 0 0/50px auto no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.rongWai {
    display: none;
    width: 632px;
    height: 470px;
    position: fixed;
    bottom: 0;
    /*left: 0;*/
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    overflow: hidden;
    justify-content: flex-end;
}
.rongWai .left {
    width: 230px;
    height: 470px;
    background-color: #fefefe;
}
.rongWai .right {
    width: 400px;
    height: 470px;
    /*margin-left: 232px;
    margin-top: -470px;*/
    margin-left: 2px;
    background-color: #fefefe;
    display: none;
}
.rongWai .left .leftTitle {
    height: 40px;
    line-height: 40px;
    background: url(../../../cxyteam_forum/images/webBg.png) 0 0/10px auto repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
}
.rongWai .left .arrow {
    background: url(../../../cxyteam_forum/images/icon.png) 0 0/50px auto no-repeat;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.rongWai .left .contactList {
    height: 100%;
    overflow-y: scroll;
    /*background-color: red;*/
}
.rongWai .left .contactList .contactItem {
    width: 85%;
    margin-left: 15%;
    height: 50px;
    line-height: 50px;
    border-bottom-color: #dcdcdc;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    cursor: pointer;
}
.rongWai .left .contactList .contactItem>span {
    margin-left: 10px;
}
.rongWai .right .contacter {
    height: 40px;
    line-height: 40px;
    text-indent: 20px;
    background: url(../../../cxyteam_forum/images/webBg.png) 0 0/10px auto repeat;
    color: white;
}
.rongWai .right .closeRongYun {
    height: 40px;
    line-height: 40px;
    float: right;
    margin-top: -40px;
    color: white;
    font-size: 16px;
    width: 50px;
    text-align: center;
    cursor: pointer;
}
.rongWai .right .message {
    height: 300px;
    /*background-color: burlywood;*/
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-y: scroll;
}
.rongWai .right .message .chatHeaderLeft {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin-left: 20px;
}
.rongWai .right .message .chatHeaderRight {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin-left: 10px;
}
.rongWai .right .message .time {
    width: 180px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-left: calc(50% - 90px);
    background-color: #f9fbfd;
    font-size: 12px;
    border-radius: 5px;
    color: #888;
}
.rongWai .right .message .messageLeft .messageItem {
    margin-top: 20px;
}
.rongWai .right .message .messageLeft .messageItem>span {
    margin-left: 10px;
    color: #8e969f;
}
.rongWai .right .message .messageLeft .messageLeftContent {
    /*text-indent: 60px;*/
    padding-left: 60px;
    padding-right: 60px;
}
.rongWai .right .message .messageRight {
    margin-top: 10px;
}
.rongWai .right .message .messageRight .messageRightItem {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    padding-right: 20px;
}
.rongWai .right .message .messageRight .messageRightItem>span {
    padding-left: 60px;
}
.rongWai .right .sendMessage {
    height: 130px;
    border-top-color: #dcdcdc;
    border-top-style: solid;
    border-top-width: 1px;
    background-color: #fefefe;
}
.rongWai .right .sendMessage .emoji {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    margin-left: 20px;
    cursor: pointer;
}
.rongWai .right .sendMessage .allEmoji {
    position: absolute;
    overflow: scroll;
    width: 310px;
    height: 200px;
    background-color: white;
    bottom: 36px;
    display: none;
}
.rongWai .right .sendMessage .allEmoji span {
    cursor: pointer;
}
.rongWai .right .sendMessage .upload {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    margin-left: 20px;
    cursor: pointer;
}
.rongWai .right .sendMessage .textarea {
    width: calc(100% - 70px);
    height: calc(100% - 35px);
    /*text-indent: 20px;*/
    padding-left: 20px;
    padding-right: 20px;
    line-height: 35px;
    border: none;
    resize: none;
    background-color: #fefefe;
    font-size: 14px;
}
.rongWai .right .sendMessage .send {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: #0099ff;
    width: 50px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 12px;
    border-radius: 5px;
}
/*******************yyy********************/
