/*24小时服务电话*/
.service-title{
	color: #000000;
	margin-bottom: 26px;
	font-size: 24px;
}
.service-title h2{
	font-size: 24px;
}
.service-title .time{
	color: #888888;
	font-size:12px;
	margin-top: 12px;
}

.hour-24{
	margin-bottom: 100px;
}
.hour-24 .hour-table{
	width: 80%;
	margin: 0 auto;
}
.hour-table table th{
	padding: 32px 0;
	border:1px solid #e4e4e4;
	text-align: center;
	font-weight: normal;
	color: #555555;
	font-size: 16px;
}
.hour-table table td{
	padding: 32px 0;
	border:1px solid #e4e4e4;
	color: #555555;
	font-size: 16px;
}



@media (max-width: 768px){
/*24小时服务电话*/
.hour-24{
	margin-bottom: 50px;
}
.hour-24 .hour-table {
    width: 100%;
}
.hour-table table th{
	padding: 15px 0;
}
.hour-table table td{
	padding: 15px 0;
}
}











/*报修求援*/
.repair-title{
	color: #000000;
	font-size: 24px;
	padding-bottom: 25px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ededed;
}
.repair .input{
	flex: 1;
	width: 100%;
	height: 36px;
	padding: 0 30px;
	font-size: 14px;
	background: #fafafa;
	border-radius: 2px;
}
.repair .input-box{
	display: flex;
	margin-bottom: 38px;
}
.repair .input-box span{
	display: inline-block;
	min-width: 70px;
	color: #000000;
	font-size: 16px;
	line-height: 36px;
}
.input-box .verific{
	margin-left: 20px;
	width: 124px;
}
.input-box .verific p{
	margin-top: 5px;
}
.input-box .verific a{
	font-size: 12px;
	color: #0c3091;
}
.repair .btns{
	margin-bottom: 34px;
}
.repair .btns button{
	width: 108px;
	height: 36px;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
	background: #0c3091;
	margin: 0 30px;
}
.repair .btns .reset{
	color: #0c3091;
	border:1px solid #0c3091;
	background: none;
}






/*发布主题*/
.theme{
	background: #fafafa;
}
.theme-title{
	padding: 20px 0;
	line-height: 30px;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 20px;
}
.theme-title .title{
	color: #000000;
	font-size: 16px;
	flex: 1;
}
.theme-title .time{
	color: #a9a9a9;
	font-size: 12px;
	padding:0 56px;
}
.theme .speak{
	line-height: 36px;
}
.theme .speak .name{
	color: #000000;
	font-size: 16px;
}
.theme .speak .all-reply span{
	color: #0c3091;
	font-size: 16px;
	border:1px solid #0c3091;
	border-radius: 4px;
	padding: 0 6px;
	display: inline-block;
	transition:0.3s;
	cursor: pointer;
}
.theme .speak .all-reply span:hover{
	color: #fff;
	background: #0c3091;
}
.theme .problem-text{
	color: #555555;
	font-size: 14px;
	padding: 10px 30px 25px;
}
.theme .admin-reply{
	color: #555555;
	font-size: 14px;
	padding: 20px 30px;
	background: #fff;
	margin-bottom: 35px;
	border-radius: 4px;
}
.theme .admin-reply .admin-name{
	color: #0c3091;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 24px;
}
.theme .admin-reply .time{
	color: #a9a9a9;
	font-size: 12px;
	margin-right: 24px;
}
.theme .admin-reply .admin-text{
	line-height: 26px;
}










@media (max-width: 768px){
/*发布主题*/
.theme-title {
    flex-wrap: wrap;
}
.theme-title .title {
    flex: none;
    width: 100%;
}
.theme-title .time {
    padding: 0;
    width: 100%;
}
.theme .speak .all-reply span {
    font-size: 14px;
    line-height: 30px;
}
.theme .admin-reply .time {
    margin-right: 0;
}
.repair .input {
    padding: 0 15px;
}
.repair .input-box{
	display: flex;
	margin-bottom: 28px;
}
}















/*报修求援提示弹窗*/
.tips-popup{
	width: 90%;
	max-width: 773px;
	background: #fff;
	border-radius: 4px;

	position: fixed;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.tips-popup .title{
	color: #000000;
	font-size: 24px;
	line-height: 66px;
	border-bottom: 1px solid #e5e5e5;
}
.tips-popup .text{
	color: #555555;
	font-size: 14px;
	line-height: 30px;
	padding:0 20px;
	margin: 20px 0;
	max-height: 520px;
	overflow-y: scroll;
}
.tips-popup .text::-webkit-scrollbar {
	width:6px;
	height:6px;
}
/*外层轨道*/
.tips-popup .text::-webkit-scrollbar-track {
	width: 6px;
	background-color:#fff;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius:2em;
}
/*滚动条的设置*/
.tips-popup .text::-webkit-scrollbar-thumb {
	background-color:#bbb;
	background-clip:padding-box;
	min-height:28px;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius:2em;
}
/*滚动条移上去的背景*/
/*.tips-popup .text::-webkit-scrollbar-thumb:hover {
	background-color:#fff;
}*/

.tips-popup .btns{
	margin: 30px 0;
}
.tips-popup .btns button{
	width: 108px;
	height: 38px;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
	background: #0c3091;
	margin: 0 10%;
}
.tips-popup .btns .cancel{
	color: #0c3091;
	border:1px solid #0c3091;
	background: none;
}

@media (max-width: 768px){
/*报修求援提示弹窗*/
.tips-popup .text {
    line-height: 26px;
	margin: 15px 0;
    max-height: 300px;
}
.tips-popup .title {
    font-size: 20px;
    line-height: 56px;
}
.tips-popup .btns button{
	margin: 0 5%;
}
}

















/*董事长信箱*/
.theme .query span {
	width: 108px;
	line-height: 36px;
    color: #0c3091;
    font-size: 16px;
    border: 1px solid #0c3091;
    border-radius: 4px;
    padding: 0 6px;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.query-form{
	display: flex;
	margin-top: 30px;
}
.query-box{
	display: flex;
	flex: 1;
	margin: 0 -15px;
}
.query-form .password-box{
	width: 30%;
}
.query-form .verif-box{
	width: 60%;
}
.query-form .input-box {
    display: flex;
    margin-bottom: 38px;
    padding: 0 15px;
}
.query-form .input-box span {
    display: inline-block;
    min-width: 70px;
    color: #000000;
    font-size: 16px;
    line-height: 36px;
}
.query-form .input-box .verific {
    margin-left: 20px;
     width: auto; 
}
.query-form .verific-code {
    margin-left: 20px;
    width: 124px;
    height: 36px;
    overflow: hidden; 
}
.query-form .input {
    flex: 1;
    width: 100%;
    height: 36px;
    padding: 0 30px;
    font-size: 14px;
    background: #fff;
    border-radius: 2px;
    color: #000;
}
.query-form .input-box .verific p {
    margin-left: 14px;
    margin-top: 0;
}
@media (max-width: 992px){
.query-form {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}
.query-box {
    display: flex;
    flex: none;
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
}
.query-form .input-box {
    display: flex;
    margin-bottom: 28px;
    padding: 0;
    width: 100%;
}
.query-form .query{
	margin-bottom: 30px;
}
.query-form .input-box .verific {
    margin-left: 20px;
    width: 124px;
    flex-wrap: wrap;
}
.query-form .verific-code {
    margin-left: 0;
    width: 100%;
    height: 36px;
}
.query-form .input-box .verific p {
    margin-left: 0;
    margin-top: 5px;
    width: 100%;
}
}

@media (max-width: 768px){
.query-form .input {
    padding: 0 15px;
}
}

















/*自来水收费站地址及电话*/
.water-details img{
	max-width: 100%;
	width: auto;
}







/*服务承诺*/
.promise{
	margin-bottom: 50px;
}
.promise .details-text{
	color: #555555;
	font-size: 14px;
	line-height: 36px;
}
.promise .line{
	margin: 30px 0;
	width: 100%;
	height: 1px;
	background: #e0e0e0;
}