*{
    margin: 0;
    padding: 0;
}
[v-cloak] {
	display: none;
}
/* 只展示一行，多余的... */
.moku-ellipsis-1{
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* 允许换行 */
.moku-ellipsis-2{
	overflow: hidden;
    white-space: normal;     /* 是否允许换行 */
	text-overflow: ellipsis;
    word-wrap: normal;      /* 控制换行类型 */
	word-break: break-all;   /* 控制断词类型 */

	display: -webkit-box;
	-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
ul{
    list-style:none;
}
a{
    display: block;
    text-decoration:none;
    color:#fff;
}
a.hover{
    text-decoration:underline;
	color:#fff;
}
body{
    color: #666;
    position: relative;
}
.l{float: left;}/* 浮动 */
.r{float: right;}
.clear:after{content:"";display: block;clear: both;}/* 清除浮动 */
.disabled { pointer-events: none; }   /* 使得该标签整体都不允许点击 */
/* 以上为基础设置 */


body {

	--color-title-bar: #fff;
	--color-normal-text: #4e4e4e;
	--color-normal-text-active: #4e4e4e;
	--color-theme-text:#6699FF;
	--color-theme-background:rgb(179, 203, 250);
	--color-theme-background2:rgb(237, 242, 252);
	--color-theme-gold:#DEB776;
}
#content{
    background: #fff;
}
.moku-top-bg {
	width: 100%;
    height: 4.25rem;
	float: left;

	background:#6699FF;
    background:var(--color-theme-text);
	
	display: none;
}
h4 {
	font-size: 1rem;
	line-height: 1.3125rem;
	font-weight: 500;
}
h5 {
	font-size: 0.875rem;
}
p img {
	max-width: 100%;
	height: auto;
}



/* 详情页卡片 */
.moku-card
{
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 1.125rem 0%;
    border-radius: 0.625rem;
    background-color: white;
    background-clip: padding-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}
.moku-card-title > h4 {
	padding-left: 0.625rem;
	margin: 0;
	font-size: 1rem;
}
.moku-card-title > h5 {
	padding-left: 0.625rem;
	margin: 0 0 0 2.5rem;
}
.moku-card-title > #taskDataIcon {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 100%;
	float: left;
}

/* 卡片1：顶部基础信息 */
.moku-card-header,.moku-card-footer {
    position: relative;
    display: flex;

    min-height: 2.75rem;
    padding: 10px 15px;

    justify-content: space-between;  
    align-items: center;
}
.moku-little-icon-div{
	width: 11rem;
	padding: 0 0 0 2rem;
	margin-left: 16px;
	margin-top: 1px;
}
.moku-little-icon {
	border: 1px solid #80cc45;
	font-size: 12px;
	color: #80cc45;
	padding: 1px 6px;
	border-radius: 14px;
}
.moku-little-icon-div span{
	font-size: 11px;
	padding: 2px 5px;
	border-radius: 14px;
	line-height:20px;
	word-break:keep-all;
}
.moku-little-icon-1{
	background: #6699FF;
	background: var(--color-theme-text);
	color: #fff;
}
.moku-little-icon-2{
	background: #DEB776;
	color: #fff;
}
.moku-price {
	color: red;
}
.moku-card-footer:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 4%;
	
    height: 1px;
    width: 92%;
    content: '';
    transform: scaleY(0.3);   /* scale:缩放 */
    background-color: #c8c7cc;
}
.moku-card-footer > span {
    color: #1f2c87;
}

/* 卡片2：任务要点、任务说明 */
#moku-task-instruction{
	background: #fadfd8;
	margin: 0.5rem 1.125rem 0%;
	padding-bottom: 5px;
	border-radius: 20px;
}
#moku-task-instruction .task-instruction-content{
	height: auto;
	padding: 2px 0;
	position: relative;
}
.task-instruction-content .noticeRED{
	height: 24px;
	line-height: 24px;
	width: 24px;
	border-radius: 20px;
	background: rgb(248, 75, 75);
	color: white;
	text-align: center;
	font-weight: bold;
	float: left;
	position: absolute;
	margin: auto;
	top: 5px;
	left: -87%;
	right: 0;
	bottom: 0;
}
.task-instruction-content p{
	color: #ff3300;
	word-break: break-all;
	padding: 5px 10px 0 40px;
}

/* 步骤类型：普通步骤*/
.card-title{
	background-color: #6699FF;
    background-color:var(--color-theme-text);
	width: 5.16rem;
	height: 1.4rem;
	text-align: center;
	line-height: 1.4rem;
	color: #ffffff;
}
.moku-card-div {
	padding: 0 1rem;
	margin: 0.25rem 0;
	clear: both;
}
.step-num {
	width: 1.1rem;
	height: 1rem;
	border-radius: 0.5rem;
	float: left;
	color: #ffffff;
	background-color: #6699FF;
	background-color: var(--color-theme-text);
	text-align: center;
	line-height: 1rem;
	padding-top: 0.05rem;
	margin: 0.125rem 0.5rem 0.125rem 0;
}
.step-desc{
	padding:0.1rem 0 0.3rem 1.6rem;
	/* background: yellowgreen; */
	word-break: break-all;
}
.commentImgDiv{
	margin: 0.5rem 0 ;
}
.step-img-common {
	width: 7rem;
	height: 7rem;
	display: block;
	margin: auto;
}
.moku-card-screenshot {
	width: 43%;
	height: 14rem;
	display: inline-block;
	position: relative;
	border:1px dashed #6699FF;
	border: 1px dashed var(--color-theme-text);
}
.moku-card-div .moku-card-screenshot:first-child{
	margin: 0.2rem 0 0 3%;
}
.moku-card-div .moku-card-screenshot:nth-child(2n+1){
	margin: 0.2rem 0 0 3%;
}
.moku-card-div .moku-card-screenshot:nth-child(2n){
	margin: 0.2rem 3% 0 0;
	float: right;
}
.moku-screenshot-tip {
	width: 3rem;
	height: 1.3rem;
	line-height: 1.3rem;
	text-align: center;
	position: absolute;
	top: 0;
	background-color: red;
	color: #FFFFFF;
}
.moku-card-screenshot > img, .moku-submit-screenshot > img {
	width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.subPic{
	display: none;
}
.moku-upload-icon {
	position: absolute;
	top: -20%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;

    width: 1.7rem;
    height: 1.6rem;
	line-height: 1.7rem;
    
    font-size: 1.6rem;
	color: white;
	text-align: center;

	background: #6699FF;
    background: var(--color-theme-text);
    border-radius: 2rem;

	z-index: 0;
}
.moku-upload-text {
	padding-left: 0.4rem;
	color: #6699FF;
	color: var(--color-theme-text);
	width: 4rem;
	height: 0;
	font-weight: bolder;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;

	z-index: 0;
}
.moku-card-highlight {
    color: red;
}
.moku-input-text {
	width: 100%;
    font-size: 0.9rem;
	margin: 0.1rem 0 0 0;
	height: 2rem;
	border: 1px solid rgb(206, 206, 206);
	padding-left: 0.3rem;
}
.moku-input-text::-webkit-input-placeholder {
    color: rgb(206, 206, 206);
}

/* 步骤类型：复制文本 */
.step-copy{
    position: relative;
}
.copyText{
    width: 65%;
	border:1px dashed #6699FF;
	border: 1px dashed var(--color-theme-text);
    margin: 0 0 0.5rem 1.6rem;
    padding: 0.3rem;
    color: gray;
    font-size: 0.8rem;
	background: rgb(237, 242, 252);
    background: var(--color-theme-background2);
    float: left;
	text-align: center;
	overflow: hidden;
	word-break: break-all;
}
.copyBtn{
    position: absolute;
    left: 80%;
    top: 0;
    display: block;

    width: 15%;
    height: 1.65rem;
    line-height: 1.65rem;
    text-align: center;
	background: #6699FF;
    background: var(--color-theme-text);
    color: white;
	border:none;
}

/* 步骤类型：打开链接 */
.step-hyperlink{
	display: flex;
	margin: 0 1.2rem 0 1.2rem;
}
.step-hyperlink button,.step-hyperlink a{
	flex: 1;
	height: 1.7rem;
	line-height: 1.7rem;
	text-align: center;
    margin: 0;
	background: #6699FF;
    background: var(--color-theme-text);
    border: none;
    border-radius: 5px;
    color: white;
}
.step-hyperlink button:last-child{
    margin-left: 1.3rem;
}
.imgMasking { 
    background-color:black; 
    opacity:0.6; 
    /* filter:alpha(opacity=80); 
    -moz-opacity:0.5; 
    -khtml-opacity:0.5; */
	color: #fff;
    position:absolute; 
    top:0; 
    left:0;
    z-index:3; 
	display: none;
} 
.imgMasking img,.imgMasking div{
	position: absolute;
	right: 0;
	left: 0;
	bottom: 100px;
	margin: auto;
}
.imgMasking div{
	width: 100px;
	height: 38px;
	left: 3.2rem;
	bottom: 82px;
}
.imgMasking img{
	width: 20px;
	left: -5.2rem;
}
#enlargementImg{
    width: 80%;

    position:fixed !important; /* 浮动对话框 */ 
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
	bottom: 0;
    margin: auto;
    z-index: 4;

    display: none;
}

/* toast样式 */
.mui-toast-container
{
    line-height: 17px;
    max-width: 80%;
    width: max-content;
    position: fixed;
    z-index: 999;
    bottom: 50px;
    left: 50%;

    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);

    opacity: 0;
}
.mui-toast-container.mui-active
{
    opacity: .9;
}

.mui-toast-message
{
    font-size: 14px;

    padding: 10px 25px;

    text-align: center;

    color: #fff;
    border-radius: 6px;
    background-color: #323232;
}

/* 上传截图 */
#file_input{
	display: none;
}

/* 重新提交页面-提交按钮 */
.resubmit_submit_btn{
	width: 100%;
	background: #eee;
	height: 50px;

	position: fixed;
	bottom: 0;
	text-align: center;
	
	display: none;
}
.resubmit_submit_btn button{
	width: 94%;
	height: 80%;
	background: #DEB776;
	color: #fff;
	border: none;
	font-size: 18px;
	margin-top: 5px;
}