/* 商品-网站销售等用 */
        /* 图片 */    
	    .img{
			width:100%;
			height:auto;		
		}
		.img-object{
		object-fit:cover;
		object-position:50% 50% 20%;
		}

	    /* div2父盒子 display:table-cell;vertical-align:top;*/
		.div2{
            width:100%;
            display:table; 
            background:#dddddd;                       
            vertical-align:top;
		}

		/* div1商品左右子盒子 */
		.div1{                     
			width:92%;
			text-align:left;
			border:1px solid #a1a1a1;
			padding:5px 5px;
			background:#dddddd;
			border-radius:5px;
                        font-size:0.8rem;
		}

		/* divImgTxt商品图文 */
		.divImgTxt{                     
			width:99%;
            text-align:center;
			padding:3px 3px;
			background:#dddddd;			
            font-size:1.0rem;
		}
		
		/* 按钮美化 */
		.login-button {
			width: 20%; 
			height: 20px;
			border-width: 0px; /* 边框宽度 */
			border-radius: 3px; /* 边框半径 */
			background: #1E90FF; /* 背景颜色 */
			cursor: pointer; /* 鼠标移入按钮范围时出现手势 */
			outline: none; /* 不显示轮廓线 */
			font-family: Microsoft YaHei; /* 设置字体 */
			color: white; /* 字体颜色 */
			font-size: 12px; /* 字体大小 */
		}
		.login-button:hover { /* 鼠标移入按钮范围时改变颜色 */
			background: #5599FF;
		}
		
		/* 输入框 */
		#input{
			outline-style: none ;
			border: 1px solid #ccc; 
			border-radius: 3px;
			padding: 10px 10px;
			width: 70%;
			font-size: 14px;
			font-weight: 700;
			font-family: "Microsoft soft";
		}
		#input:focus{
			border-color: #66afe9;
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
			box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
		}