/*组件样式*/
[id^=likeSelect]{
  float: left;
  position: relative;
  width: 150px;
  height: 30px;
  line-height: 30px;
  border: none;
  border-radius: 5px;
  background-color: #FF9500;
  color: #fff;
  cursor: pointer;
}
[id^=likeSelect] .seleTriangle {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top:-5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 10px solid #fff;
  transition: 0.2s;
}
[id^=likeSelect] .seleTriangle.active {
    transform: rotate(180deg);
}
[id^=likeSelect] .arrowBlack{
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top:-5px;
	width: 14px;
    height: 10px;
    background: url(../../../images/new/itselectDown.png) no-repeat right center;
    background-size:14px 10px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
[id^=likeSelect] .arrowBlack.active{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
[id^=likeSelect] .selectClick .choice {
  text-align: left;
  box-sizing: border-box;
  padding-left: 10px;
  font-size:14px;
}
[id^=likeSelect] ul{
  display:none;
  position: absolute;
  top: 30px;
  width: 99%;
  text-indent: 10px;
  background: #fff;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #fff0dd;
  z-index: 100;
  padding: 5px 0;
  max-height: 150px;
  overflow-y: auto;
}
[id^=likeSelect] ul li {
  height: 30px;
  line-height: 30px;
  color: #333;
}
[id^=likeSelect] ul li.active {
  color: #ff9500;
}
[id^=likeSelect] ul li:hover{
  background:#ff9500;
  color:#fff;
}


[id^=addBox] .boxMask{
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: #000;
    opacity: 0.5;
    filter:alpha(opacity=50); 
}
[id^=addBox] .boxCont{
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 200;
}
[id^=addBox] .title{
	position: relative;
    background: #ff9500;
    color: #fff;
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    border-radius:5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
}
[id^=addBox] .closeIcon{
    position: absolute;
    top: 18px;
    right: 20px;
    height: 13px;
    width: 13px;
    background: url(../../../images/new/closeItTip.png) no-repeat center;
    -moz-background-size: 18px;
    background-size: 18px;
    cursor: pointer;
}
[id^=addBox] .sureBtn{
	position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%,0);
	width: 300px;
    height: 40px;
    line-height: 40px;
    background: #FF9500;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

[id^=blockRadio]{position: relative;}
[id^=blockRadio] span{
  display: inline-block;
  padding: 0 10px;
  margin-right:10px;
  background: #F4F4F4;
  height: 26px;
  line-height: 26px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
}
[id^=blockRadio] span.active{
  background: #FF9500;
  color: #fff;
}
[id^=blockRadio] .input300{
  position: absolute;
  right: -300px;
  top: -5px;
  width:300px;
  height:40px;
  padding:12px 10px;
  color:#333;
  font-size:14px;
  border:1px solid #E0E0E0;
  box-sizing: border-box;
}

[id^=radioDiv]{float:left;}
[id^=radioDiv] em{
    height: 30px;
    line-height: 30px;
    float: left;
    padding: 0 10px;
    background: #f5f0e6;
    cursor: pointer;
    margin-right: 1px;
    width: 70px;
    text-align: center;
    color: #333;
}
[id^=radioDiv] em.ltBr{
	border-radius:5px 0 0 5px;
}
[id^=radioDiv] em.rtBr{
	border-radius:0 5px 5px 0;
}
[id^=radioDiv] em.active {
    background: #ff9500;
    color: #fff;
}

[id^=likeRadio] .radioItem{
    float: left;
    margin-right: 30px;
    width: auto;
    cursor: pointer;
}
[id^=likeRadio] .radioItem b{
	margin-top: 7px;
    margin-right: 10px;
    float: left;
    width: 17px;
    height: 16px;
    background: url(../../../images/img.png) no-repeat;
    background-position: -41px -131px;
}
[id^=likeRadio] .radioItem.active b{
	background-position: -7px -131px;
}

[id^=likeCheckbox] .item{
	float: left;
    margin-right: 30px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}
[id^=likeCheckbox] .item b{
	height: 16px;
    width: 17px;
    position: static;
    margin-right: 8px;
    display: inline-block;
    vertical-align: sub;
    background: url(../../../images/span_green_unchecked.png) no-repeat left top;
}
[id^=likeCheckbox] .item.active b{
	background: url(../../../images/span_green_checked.png) no-repeat left top;
}

