fieldset > div {
    margin-bottom: 30px;
}
.goods_add{
	padding:20px 0;
}
.goods_add .content{
	padding: 20px 0;
    float: left;
	width: 100%;
}
.red_title{
	text-align: center;
    font-size: 18px;
    color: #e22e4c;
    padding: 10px 0;
}
.goods_add .main{
	background:#FFF;
	border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
	float: left;
	width: 100%;
}
.goods_add .main .title{
	color:#FFF;
	background: #2196f3;
	text-align:center;
	padding:8px 0;
	font-size: 18px;
	position:relative;
}
/*小三角*/
.goods_add .main .title:after {
	content: " ";
    border-style: solid;
    border-width: 7px 10px 0 10px;
    border-color: #2196f3 transparent transparent transparent;
    position: absolute;
    left: 50%;
	top: 100%;
    margin-left: -10px;
}
.goods_add .main .content{
	padding: 20px;
}
/*按鈕*/
.audit_btn{ padding:10px 0;}
button{
	width: 200px;
    background: #e22e4c;
    color: #FFF;
    height: 40px;
    border: none;
    display: inherit;
    margin: auto;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    border-radius: 4px;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	display:inline-block;
}
button:hover{
	box-shadow: 0 4px 18px 1px rgba(0,0,0,.2);
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
	-webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}
/**************************************************************
										          照片上傳
**************************************************************/
.pic div label#upload1, .pic div label#upload2, .pic div label#upload3 {
	overflow: hidden;
    text-align: center;
    border-radius: 4px;
	width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor:pointer;
	background: url(../images/upload_img.jpg) no-repeat;
}
.pic div label img{
	max-height: 340px;
}

/*刪除*/
.delete-file {
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 20px;
}

/**************************************************************
									  特殊表單 / 資源類別
**************************************************************/
/*特殊表單*/
input[type="checkbox"], 
input[type="radio"] {display: none;}
input[type="checkbox"] + span, 
input[type="radio"] + span {
	color: #000;
	font-weight: normal;
	text-align: center;
	background: #FFF;
	border: 1px solid #e3e3e3;
    border-radius: 2px;
	width: 110px;
	padding: 5px;
    margin: 0 10px 10px 0;
	display: inline-block;
    cursor: pointer;
	-o-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}
input[type="checkbox"]:checked + span, 
input[type="radio"]:checked + span, 
input[type="checkbox"] + span:hover, 
input[type="radio"] + span:hover {
	border: #2196f3 1px solid;
    background: #2196f3;
    color: #FFF;
}
input[type="file"] {cursor: pointer;}

/*分類*/
.category label {
    display: inline-block;
	width: calc(25% - 10px);
    margin: 0 5px;
}
.category input[type="radio"] + span {
	font-size: 18px;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 5px 10px;
    width: 100%;
}
.category input[type="radio"] + span small {
    color: #888;
    font-size: 14px;
    display: block;
}
.category input[type="radio"]:checked + span small, 
.category input[type="radio"] + span:hover small {
    color: #FFF;
}
/**************************************************************
									         地址選單
**************************************************************/
#addr select, 
#pgaddr select{ 
	width: calc(50% - 15px);
}
#addr select:first-child, 
#pgaddr select:first-child { 
	margin-right: 30px;
}

.category select {width: calc(50% - 17px);}
.category select:first-child {margin-right: 25px;}

/*------------------------------------------------------
Media Queries 
--------------------------------------------------------*/
@media (max-width:991px){
	.goods_add {
		padding: 20px 5px;
	}
	.goods_add .main .content {
		padding: 20px 5px;
	}
	/*資源類別*/
	.category label {
		width: calc(33% - 5px);
    	margin: 2.5px;
	}
	.category input[type="radio"] + span {
		font-size: 16px;
		border: dashed 1px rgba(228, 66, 93, .5);
		margin: 0;
		height: 70px;
    	float: left;
	}
	#gotop {bottom: 20px;}
	.category select {width: 100%;}
	.category select:first-child {margin-bottom: 15px;}
}