body {
    background: #F8F8F8;

}
.BCAlert-close-view img {
    display: none;
}
/* 头部的header */
.topLogo{
	height: 100%;
	display: flex;
	justify-content: center;
	height: 66px;
	background: #FF7B00;
}
.topLogo div{
	max-width: 1200px;
	width: 100%;
	display: flex;
	align-items: center;
}
.topLogo div img{
	height: 58px;
}

.content {
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}
/* 进入三个编辑器的按钮 */
.edit{
	display: flex;
	justify-content:space-between;
	margin-top: 60px;
}
.edit >div{
	width: calc((100% - 42px)/3);
	height: 170px;
    position: relative;
    cursor: pointer;
}
.edit >div>img{
	width: 100%;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
}
.edit >div>button{
	font-size: 20px;
	color: #fff;
	height: 36px;
	width: 106px;
	border-radius: 18px;
	background: #FF7B00;
	position: absolute;
	z-index: 2;
	right: 30px;
	bottom: 24px;
	border:none;
	cursor: pointer;

}
.edit >div>button:hover{
	transform: scale(1.1)
}
/* 选择Scratch3作品还是应用实验室作品 */
.tabs{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 35px;
}
.tabs div {
	font-size: 20px;
    text-align: center;
    color: #333333;	
    cursor: pointer;
    line-height: 40px;
    margin-right: 70px;
}
.tabs div:last-child{
	margin-right: 0px;

}
.tabs div.active {
    border-bottom: 3px solid #FF7B00;

}
/* 两个按钮热门、最新以及上传作品 */
.handleBtn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
.handleBtn .twoBtn{
	display: flex;
	width: 180px;
	border: 1px solid #FF7B00;
	height: 40px;
	line-height: 40px;
	color: #FF7B00;
	border-radius: 6px;
	text-align: center;
}
.handleBtn .twoBtn div{
	width: 50%;
	cursor: pointer;
}
.handleBtn .twoBtn div.active{
	background: #FF7B00;
	color: #fff;
}

.uploadWork button {
    border: none;
    width: 143px;
    height: 50px;
    font-size: 20px;
	color: #FF7B00;
	background: #fff;
    border:1px solid  #FF7B00;
    border-radius: 25px;
    cursor: pointer;
}

/* 作品列表的UI */
.workList {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.haveMargin {
    margin-right: 20px;
}

.workList .eachBlock {
    width: calc((100% - 60px)/4);
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.eachBlock .img {
    position: relative;
    border-bottom: 1px solid #ebebeb;
}

.eachBlock .img img {
    display: block;
    height: 285px;
    margin: 0 auto;
}
.eachBlock .img img.girlsMine{
    position: absolute;
    width: 80px;
    height: 40px;
    left: 0;
    top:20px;
}
.eachBlock .info {
    padding: 0 20px;
}

.info .title {
    font-size: 16px;
    color: #333333;
    line-height: 20px;
    text-emphasis: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 18px;
    margin-bottom: 10px;
}

.info .dataNum {
    display: flex;
    font-size: 16px;
    color: #999;
	align-items: center;
	justify-content: space-between;
    margin-bottom: 20px;
}

.info .dataNum div {
    display: flex;
    align-items: center;
}

.info .dataNum div img {
	margin-right: 10px;
	height: 20px;
	width: 20px;
}
.userInfo{
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
    
}
.userInfo img{
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
.userInfo span{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 150px;
}
/* 登录 */
.mask {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    font-size: 16px;
}

.loginBlock {
    width: 420px;
    height: 420px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loginBody {
    width: 370px;
    margin: 0 auto;
    margin-top: 80px;

}

.phone {
    display: flex;
    border: 1px solid #E1E1E1;
    height: 48px;
    width: 100%;
    align-items: center;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;

}

.phone input {
    border: none;
    height: 40px;
    padding-left: 17px;
}

.selectCode {
    width: 100px;
    height: 48px;
    border-right: 1px solid #E1E1E1;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
}

.selectCode img {
    margin-left: 7px;
}

.phoneCode {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    height: 48px;
    border-left: 1px solid #E1E1E1;
    line-height: 48px;
    padding: 0 16px;
    color: #FF7B00;
    cursor: pointer;

}

.phoneCode.showNow {
    color: gray;
}

.loginBox .loginBtn {
    width: 100%;
    height: 50px;
    font-size: 20px;
    color: #fff;
    background: #FF7B00;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
}

.boxBottom {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
    color: #666

}

.boxBottom img {
    width: 18px;
    margin-right: 7px;
}

/* 国家区号 */
.code_body {
    position: absolute;
    top: 150px;
    left: 40px;
    width: 183px;
    height: 251px;
}

#code_list {
    width: 100%;
    height: calc(100% - 20px);
    background: #FFF;
    overflow-y: scroll;
    border: #FF7B00 1px solid;
    font-size: 16px;
    color: #333333;

}

/*小三角*/
.triangle_small {
    border: solid transparent;
    border-bottom-color: #FFF;
    border-width: 10px;
    content: " ";
    position: absolute;
    top: -19px;
    left: 28px;
    z-index: 2;
}

/*大三角*/
.triangle_big {
    border: solid transparent;
    border-bottom-color: #FF7B00;
    border-width: 11px;
    /*10px+2px*/
    content: " ";
    position: absolute;
    top: -22px;
    left: 27px;
    /*20px-2px*/
}

#code_list ul {
    padding: 0;
    margin: 0;
    margin: 10px 10px 10px 20px;
    width: calc(100% - 30px);
    text-align: left;
    cursor: pointer;
}

#code_list ul li {
    height: 36px;
    line-height: 36px;
}

#code_list ul li span:first-child {
    display: inline-block;
    width: 40%;
    overflow: hidden;
}

#code_list ul li span:nth-child(2) {
    display: inline-block;
    width: calc(60% - 8px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 页码按钮 */
.page_list {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.page_ul {
    text-align: center;
}

.page_ul>span {
    font-weight: 500;
}

.page_ul li {
    display: inline-block;
    width: 26px;
    margin-right: 6px;
    height: 26px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(96, 96, 96);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgb(232, 232, 232);
    line-height: 26px;
    border-radius: 4px;

    cursor: pointer;
}

.page_ul .last {
    width: 60px;
}

.page_ul li.disabled {
    display: none;
}

.page_ul>li.disabled,
.page_ul>li.disabled:hover {
    color: #999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

.page_ul li.pre,
.page_ul li.next {
    width: 60px;
}

.page_ul li.active {
    background: #FF7B00;
    border: none;
    color: #FFF;
}

.page_ul li:hover {
    background: #FF7B00;
    color: #FFF;
    border: none;

}