:root {
  /* 大背景 */
	--primary-color: #ffffff;	
	/* 标题文字   图标颜色 */
	--size-color:#333333;
	/* 二级标题 */
	--size-color-black:#666666;
	/* 简介文字 */
	  --size-color-gray:#999999;
	  /* 背景色块 */
	--size-bg-bgf5:#f5f5f5;
	/* 按钮颜色 */
	--green-color:#14af68;
	/* 线条颜色	 */
	--secondary-color: #eeeeee;		
	/* 输入框边框 */
	--border-color: #DDDDDD;
	/* 错误信息提示 */
	--red-color: #DF3532;
	--blue-color: #284391;
	--size-bg-bgf9: #f9f9f9;
}
.signboxmain{
    width:100%;
    background:var(--size-bg-bgf5);
    padding:30px 0;
}
.singboxcontent{
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background:var(--primary-color);
    border-radius:10px;
    width:1200px;
    margin:34px auto 0;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.07);
}
.photoTitle{
    width:590px;
    display: flex;
    justify-content: space-between;
    margin:0 auto;
}
.photoTitle span,.photoTitle span a{
    font-weight: 600;
    font-size: 20px;
    color: var(--size-color);
    position: relative;
    cursor: pointer;
}
.photoTitle span:hover a,.photoTitle span.hover a{
    color:#14AF68;
}
.photoTitle span:hover::before,.photoTitle span.hover::before{
    content:'';
    width: 35px;
    height: 2px;
    background:#14AF68;
    position:absolute;
    left:50%;
    bottom:-8px;
    transform: translateX(-50%);
}
.searchContent{
    width:590px;
    margin:30px auto 0;
    position: relative;
}
.searchContent input{
	box-sizing: border-box;
    width:590px;
    height:51px;
    background:#fff;
    border-radius:50px;
	border:solid 1px var(--secondary-color);
	outline: none;
	padding:0 15px;
}
.searchContent input:focus{
	border:solid 1px var(--green-color);
}
.searchContent i{
    position:absolute;
    right:16px;
    top:14px;
    font-size:20px;
    color:#14AF68;
    cursor: pointer;
}
.singboxcontent ul{
    width: 100%;
}
.singboxcontent ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height:50px;
    cursor: pointer;
}
.singboxcontent ul li:first-child{
    border-radius:10px 10px 0 0;
}
.singboxcontent ul li:first-child span{
    color:var(--size-color-gray);
    font-size:16px;
}
.singboxcontent ul li span{
    width:190px;
    display: inline-block;
    text-align: center;
    font-size:18px;
    color:var(--size-color);
}
.singboxcontent ul li span:last-child{
    width:250px;
}
.singboxcontent ul li:nth-child(2) span:first-child{
    width:23px;
    height:31px;
    background:url(../images/one3.png) no-repeat;
    background-size:cover;
    background-position: center;
    margin:0 auto;
    line-height:31px;
    font-size:16px;
    color:#fff;
}
.singboxcontent ul li:nth-child(3) span:first-child{
    width:23px;
    height:31px;
    background:url(../images/one2.png) no-repeat;
    background-size:cover;
    background-position: center;
    margin:0 auto;
    line-height:31px;
    font-size:16px;
    color:#fff;
}
.singboxcontent ul li:nth-child(4) span:first-child{
    width:23px;
    height:31px;
    background:url(../images/one1.png) no-repeat;
    background-size:cover;
    background-position: center;
    margin:0 auto;
    line-height:31px;
    font-size:16px;
    color:#fff;
}
.singboxcontent ul li:nth-child(2n+3){
    background:var(--size-bg-bgf5);
}
.singboxcontent ul li:hover{
    background:#FFEB97;
}
.singboxcontent ul li:hover span{
    color: #333333;
}
.singboxcontent ul li:first-child:hover{
    background:var(--primary-color)
}
.singboxcontent ul li:last-child{
    border-radius:0 0 10px 10px;
}