@charset "utf-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea {
  margin: 0;
  padding: 0;
}
address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  height: 100%;
  font-size: 20px;
}
body {
  min-height: 100%;
  font-size: 20px;
  line-height: 1.5;
  font-family: Microsoft YaHei;
  color: #222;
  background: #f4f4f7;
  display: flex;
  flex-direction: column;
}
body.white-body {
  background: #fff;
}
section{
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex:1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-size: 100%;
  font-weight: normal;
}
button,
input,
select,
textarea {
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
a {
  text-decoration: none;
  color: #666;
  background: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
:focus {
  outline: none;
}
.clearfix {
  clear: both;
  content: "";
  display: block;
  overflow: hidden
}
.clear {
  clear: both;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.w1200 {
  width: 1300px;
  margin: 0 auto;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A8B0B9;
  font-size: 16px;
}
/*谷歌*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/*火狐*/
input[type="number"] {
  -moz-appearance: textfield;
}
input,
textarea{
  font-size: 16px;
  color: #333;
  border: none;
  background: none;
}
textarea{
  resize: none;
}
textarea::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}
textarea::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
}
textarea:hover::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 53%, 0.4);
}
textarea:hover::-webkit-scrollbar-track {
  background: hsla(0, 0%, 53%, 0.1);
}
.ellipsis1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.ellipsis2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 按钮水波纹效果 */
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #7db7f8 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .3s, opacity .5s;
}
.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}
/* 单选框 */
.gcs-radio {
  display: none;
}
.gcs-radio+label {
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  border: 1px solid gray;
  border-radius: 50%;
}
.gcs-radio+label:hover {
  border: 1px solid #2783FB;
  cursor: pointer;
}
.gcs-radio:checked+label {
  background: #2783FB;
  border: 1px solid #2783FB;
  position: relative;
}
.gcs-radio:checked+label:after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/* 复选框 */
.gcs-checkbox {
  display: none;
}
.gcs-checkbox+label {
  background-color: white;
  border-radius: 0px;
  border: 1px solid #d3d3d3;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  vertical-align: bottom;
  line-height: 20px;
}
.gcs-checkbox+label:hover {
  cursor: pointer;
  border: 1px solid #2783FB;
}
.gcs-checkbox:checked+label {
  background-color: #eee;
  background: #2783FB;
}
.gcs-checkbox:checked+label:after {
  content: "\2714";
  color: white;
}

/* css弹性盒，兼容常用浏览器 */
.am-flexbox-dir-row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.am-flexbox-dir-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.align-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.am-item{
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* 公共头部 */
.pub-head{
  width: 100%;
  background-color: #fff;
}
.pub-head .head-inner{
  height: 72px;
}
.pub-head .head-inner .logo-box{
  height: 50px;
}
.pub-head .head-inner .logo-box img{
  height: 100%;
}
.pub-head .head-inner .nav-box li{
  padding: 0 20px;
}
.pub-head .head-inner .nav-box li a{
  font-size: 16px;
  color: #333333;
}
.pub-head .head-inner .nav-box li.active a {
  position: relative;
}
.pub-head .head-inner .nav-box li.active a::after{
  content: "";
  width: 26px;
  height: 3px;
  background-color: #3A5CD9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
.login-btn{
  width: 68px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #3A5CD9;
  border-radius: 3px;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
  margin-left: 20px;
}
/* 顶部已登录 */
.has-log-box{
  height: 72px;
  padding-left: 20px;
  /* border-left: 1px solid #F0F0F5; */
  cursor: pointer;
  position: relative;
}
.has-log-box::after{
  content: "";
  width: 1px;
  height: 22px;
  background-color: #F0F0F5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.has-log-box .img-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.has-log-box .img-box img{
  width: 100%;
  height: 100%;

}
.has-log-box .text{
  font-size: 16px;
  color: #333333;
}
.has-log-box .triangle {
  display:inline-block;
  width:0;
  height:0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3A5CD9;
  margin-left: 10px;

  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.has-log-box:hover .triangle{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.has-log-box:hover .drop-down-menu{
  display: block;
}
.drop-down-menu{
  /* border-radius: 5px 0 5px 5px; */
  position: absolute;
  top: 72px;
  right: 0;
  z-index: 10;
  box-shadow: 0px 5px 26px 0px rgba(140, 149, 180, 0.2);
  display: none;
}
.drop-down-menu li:not(.arrow-box){
  width: 112px;
  height: 36px;
  line-height: 36px;
  border-bottom: 1px solid #d3d3d3;
  font-size: 14px;
  color: #1C2437;
  padding-left: 20px;
  background-color: #fff;
}
.drop-down-menu li:nth-child(2){
  border-radius: 5px 0 0 0;
}
.drop-down-menu li:last-child{
  border-bottom: none;
  border-radius: 0 0 5px 5px;
}
.drop-down-menu li:hover{
  background-color: #EBF0FC;
}
.drop-down-menu li.arrow-box{
  height: 12px;
  background-color: transparent;
  position: relative;
}
.drop-down-menu li.arrow-box::after {
  content: "";
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-left-color: #fff;
  position: absolute;
  top: 4px;
  right: -9px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
/* 首页-轮播图 */
.in-banner-box {
  width: 100%;
  height: 436px;
}
.in-banner-box .swiper-container {
  height: 100%;
}
.in-banner-box .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in-banner-box .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
/* 首页 */
.commfunc-box{
  padding: 50px 0;
  background-color: #fff;
}
.pub-text-title span{
  font-size: 20px;
  font-weight: bold;
  color: #1C2437;
  position: relative;
}
.pub-text-title.heigh{
  padding: 50px 0 30px;
}
.pub-text-title.heigh .show-more{
  font-size: 14px;
  color: #7A8598;
  align-self: flex-end;
}
.pub-text-title span::after{
  content: "";
  width: 100%;
  height: 6px;
  background: #3355D2;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.commfunc-box .func-module-box{
  padding-top: 35px;
}
.commfunc-box .func-module-box .item{
  box-sizing: border-box;
  width: 236px;
  height: 64px;
  background: #EBF0FC;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 16px 0 13px;
}
.commfunc-box .func-module-box .item>img{
  width: 42px;
  height: 42px;
  margin-top: -53px;
}
.func-module-box .item .info-box{
  margin-left: 13px;
}
.func-module-box .item .info-box .title {
  font-size: 16px;
  color: #1C2437;
}
.func-module-box .item .info-box .intro span{
  font-size: 14px;
  color: #7A8598;
}
.func-module-box .item .info-box .intro img{
  width: 21px;
  height: 21px;
}
/* 业务办理、扫码 */
/* 业务办理指南 */
.buma-scan-box .busi-guide {
  box-sizing: border-box;
  width: 888px;
  height: 285px;
  background-color: #fff;
  padding: 30px;
}
.buma-scan-box .busi-guide li{
  height: 100%;
}
.buma-scan-box .busi-guide li .img-box{
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 256px;
  height: 146px;
}
.buma-scan-box .busi-guide li .img-box img{
  width: 82px;
  height: 82px;
  transition: all 0.5s ease 0s;
}
.buma-scan-box .busi-guide li .img-box:hover img {
  transform: scale(1.4);
}
.buma-scan-box .busi-guide li .title {
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
  display: inline-block;
  max-width: 230px;
}
.buma-scan-box .busi-guide li .show-det-btn {
  cursor: pointer;
  width: 94px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: #F4F4F7;
  border: 1px solid #DEDEE8;
  border-radius: 13px;
  font-size: 14px;
  font-weight: bold;
  color: #7A8598;
  margin-top: 10px;
}
/* 扫码关注 */
.buma-scan-box .scan-code {
  box-sizing: border-box;
  width: 392px;
  height: 285px;
  background-color: #fff;
  padding: 30px;
}
.buma-scan-box .scan-code li{
  height: 100%;
}
.buma-scan-box .scan-code li img{
  width: 146px;
  height: 146px;
}
.buma-scan-box .scan-code li .title{
  font-size: 16px;
  color: #1C2437;
}
.buma-scan-box .scan-code li .tip {
  font-size: 14px;
  color: #7A8598;
  margin-top: 10px;
}
/* 通知公告 */
.in-notic-box{
  width: 888px;
  height: 328px;
  background: #FFFFFF;
  padding: 30px;
}
.in-notic-box .left{
  width: 332px;
  cursor: pointer;
}
.in-notic-box .left .img-box{
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.in-notic-box .left .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease 0s;
}
.in-notic-box .left:hover .img-box img {
  transform: scale(1.1);
}
.in-notic-box .left .info-box {
  width: 100%;
  height: 78px;
  background: #F4F4F7;
  padding: 15px 15px;
}
.in-notic-box .left .info-box .title-box .title {
  font-size: 16px;
  color: #1C2437;
  max-width: 70%;
}
.in-notic-box .left .info-box .title-box span{
  font-size: 14px;
  color: #7A8598;
  flex-shrink: 0;
}
.in-notic-box .left .info-box p{
  font-size: 14px;
  color: #7A8598;
  margin-top: 3px;
}
.in-notic-box .right{
  width: 466px;
  height: 268px;
}
.in-notic-box .right li{
  border-bottom: 1px solid #F0F0F5;
  cursor: pointer;
}
.in-notic-box .right li .date-box{
  width: 78px;
  height: 64px;
  background-image: url(../images/date_box.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 20px;
}
.in-notic-box .right li .date-box .day {
  font-size: 30px;
  font-family: DIN Medium;
  color: #1C2437;
  line-height: 1.2;
}
.in-notic-box .right li .date-box .year {
  font-size: 16px;
  font-family: DIN Medium;
  color: #7A8598;
  line-height: 1.8;
}
.in-notic-box .right li .info-box .title {
  font-size: 16px;
  color: #1C2437;
  margin-bottom: 5px;
}
.in-notic-box .right li .info-box .intro {
  font-size: 14px;
  color: #7A8598;
}
.in-notic-box .right li:hover .info-box .title{
  color: #3A5CD9;
}
.in-notic-box .right li:first-child{
  padding-bottom: 19px;
}
.in-notic-box .right li:nth-child(2){
  padding-top: 19px;
  padding-bottom: 19px;
}
.in-notic-box .right li:last-child{
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 19px;
}
/* 视频展示 */
.in-video-box{
  width: 392px;
  height: 328px;
  background: #FFFFFF;
  padding: 30px;
}
.in-video-box .video-box {
  width: 100%;
  height: 190px;
}
.in-video-box .video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in-video-box .intro-box {
  padding: 20px 20px 15px 15px;
  background: #F4F4F7;
}
.in-video-box .intro-box .left .title{
  font-size: 16px;
  color: #1C2437;
}
.in-video-box .intro-box .left  .intro {
  font-size: 14px;
  color: #7A8598;
  margin-top: 3px;
}
.in-video-box .intro-box .img-box {
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.in-video-box .intro-box .img-box img{
  width: 100%;
  height: 100%;
}
/* 故障排除 */
.troub-shoot{
  padding: 30px;
  width: 888px;
  height: 258px;
  background: #FFFFFF;
}
.troub-shoot .left {
  width: 332px;
}
.troub-shoot .left .item {
  width: 100%;
  height: 58px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 15px;
  cursor: pointer;
}
.troub-shoot .left .item .inner .img-box{
  width: 36px;
  height: 36px;
  background: #F4F4F7;
  border-radius: 50%;
  margin-right: 15px;
}
.troub-shoot .left .item .inner .img-box img{
  width: 22px;
  height: 22px;
}
.troub-shoot .left .item .inner span{
  font-size: 16px;
  color: #FFFFFF;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  to {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.troub-shoot .left .item>img{
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.troub-shoot .left .item:hover>img {
  -webkit-animation: rotate 1s ease-in 0.25s infinite alternate;
  animation: rotate 1s ease-in 0.25s infinite alternate;
}
.troub-shoot .troub-item {
  width: 236px;
  height: 198px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.troub-shoot .troub-item img{
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
}
.troub-shoot .troub-item span{
  font-size: 16px;
  color: #FFFFFF;
}
/* 安全用气 */
.safe-use-gas{
  width: 392px;
  height: 258px;
}
.safe-use-gas li{
  width: 190px;
  height: 78px;
  background-color: #fff;
  padding: 11px;
  margin-bottom: 12px;
  padding-right: 2px;
  cursor: pointer;
}
.safe-use-gas li.margin0{
  margin-bottom: 0;
}
.safe-use-gas li img{
  width: 56px;
  height: 56px;
}
.safe-use-gas li span{
  font-size: 16px;
  color: #1C2437;
  text-align: center;
}
/* 底部 */
.pub-footer{
  width: 100%;
  height: 164px;
  background: #091633;
  margin-top: 80px;
}
.pub-footer.margin0{
  margin-top: 0;
}
.pub-footer .inner{
  height: 100%;
}
.pub-footer .inner .left h1 {
  font-size: 26px;
  font-family: HYYakuHei;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.pub-footer .inner .left p{
  font-size: 14px;
  color: #808A9C;
  line-height: 23px;
}
.pub-footer .inner .right .modul-box{
  width: 362px;
}
.pub-footer .inner .right .modul-box li{
  width: 114px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: rgba(244, 244, 247, 0);
  border: 1px solid #374056;
  border-radius: 4px;
  font-size: 14px;
  color: #808A9C;
  margin-bottom: 10px;
  cursor: pointer;
}
.pub-footer .inner .right .modul-box li:hover{
  color: #fff;
}
.pub-footer .inner .right .modul-box li.mnargin0{
  margin-bottom: 0;
}
.pub-footer .inner .right .modul-link{
  margin-left: 25px;
}
.pub-footer .inner .right .modul-link li{
  font-size: 16px;
  color: #A8B0BF;
  line-height: 28px;
  margin-bottom: 10px;
  cursor: pointer;
}
.pub-footer .inner .right .modul-link li:hover{
  color: #fff;
}
.pub-footer .inner .right .modul-link li:last-child{
  margin-bottom: 0;
}
/* 安全公告 */
/* 导航条 */
.my-navi-bar{
  width: 100%;
  height: 55px;
  background: url(../images/bar_bg.png) no-repeat;
  background-size: 100% 100%;
}
.my-navi-bar a{
  line-height: 55px;
  font-size: 14px;
  color: #fff;
}
.section-inner-box{
  margin-top: 30px;
}
.section-inner-box .left-menu-box {
  width: 228px;
  min-height: 755px;
  background-color: #fff;
  border-radius: 5px;
}
.section-inner-box .left-menu-box .head {
  width: 100%;
  height: 105px;
  padding: 33px 0 0 30px;
  background: url(../images/sec_left_bg.png) no-repeat;
  background-size: 100% 100%;
}
.section-inner-box .left-menu-box .head .text {
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 10px;
}
.section-inner-box .left-menu-box .head .english {
  font-size: 12px;
  color: #C4D0F9;
}
.section-inner-box .left-menu-box .menu-box li{
  height: 55px;
  padding: 0 20px 0 30px;
  cursor: pointer;
  border-bottom: 1px solid #F0F0F5;
}
.section-inner-box .left-menu-box .menu-box li .title-box .icon{
  width: 16px;
  margin-right: 14px;
}
.section-inner-box .left-menu-box .menu-box li .title-box .icon.blue{
  display: none;
}
.section-inner-box .left-menu-box .menu-box li .title-box span{
  font-size: 16px;
  color: #7A8598;
}
.section-inner-box .left-menu-box .menu-box li .arrow {
  width: 8px;
  height: 10px;
  display: none;
}
.section-inner-box .left-menu-box .menu-box li.active .title-box .icon.gray {
  display: none;
}
.section-inner-box .left-menu-box .menu-box li.active .title-box .icon.blue{
  display: block;
}
.section-inner-box .left-menu-box .menu-box li.active .title-box span {
  color: #1C2437;
}
.section-inner-box .left-menu-box .menu-box li.active .arrow{
  display: block;
}
/* 右侧 */
.section-inner-box .right-cont-box {
  width: 1052px;
  min-height: 755px;
}
.section-inner-box .right-cont-box .notice-head {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #fff;
}
.section-inner-box .right-cont-box .notice-head .title-box img{
  width: 16px;
  margin-right: 10px;
}
.section-inner-box .right-cont-box .notice-head .title-box span{
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
}
.section-inner-box .right-cont-box .notice-head .time{
  font-size: 14px;
  color: #7A8598;
}
/* 安全服务承诺 */
.safety-pub-list{
  /* margin-top: 8px;
  padding: 0 20px; */
  background-color: #fff;
}
.safety-pub-list li{
  padding: 20px 0;
  border-bottom: 1px dashed #DADAE7;
  cursor: pointer;
}
/* .safety-pub-list li:last-child{
  border-bottom: none;
} */
.safety-pub-list li .title-box .num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  text-align: center;
  /* padding: 6px; */
  border-radius: 50%;
  background-color: #FA9A4B;
  margin-right: 10px;
  align-self: flex-start;
}
.safety-pub-list li .title-box .title {
  font-size: 14px;
  font-weight: bold;
  color: #1C2437;
}
.safety-pub-list li .cont-box {
  font-size: 14px;
  color: #1C2437;
  padding-left: 30px;
  margin-top: 15px;
}
/* 登录页 */
.login-sect{
  background: url(../images/login_bg.png) no-repeat;
  background-size: cover;
}
.log-box .img-box {
  width: 470px;
  height: 407px;
}
.log-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.log-box .form-box {
  width: 452px;
  height: 407px;
  background-color: #fff;
  padding: 30px 50px;
}
.log-box .form-box .title {
  font-size: 18px;
  color: #050D1A;
  text-align: center;
  margin-bottom: 28px;
}

.log-box .form-box .title .log-nav-box li{
  padding: 0 20px;
}
.log-box .form-box .title .log-nav-box li a{
  font-size: 18px;
  color: #333333;
}
.log-box .form-box .title .log-nav-box li.active a {
  position: relative;
}
.log-box .form-box .title .log-nav-box li.active a::after{
  content: "";
  width: 26px;
  height: 3px;
  background-color: #3A5CD9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

.log-box .form-box .my-form-item {
  width: 352px;
  height: 46px;
  margin-bottom: 20px;
}
.log-box .form-box .my-form-item  input{
  width: 100%;
}
.log-box .form-box .my-form-item .inner {
  height: 100%;
  background: #F2F2F6;
  border-radius: 4px;
  padding: 0 20px;
}
.log-box .form-box .my-form-item .inner img{
  width: 14px;
  height: 18px;
  margin-right: 14px;
  flex-shrink: 0;
}
.log-box .form-box .my-form-item .inner span{
  display: inline-block;
  font-size: 14px;
  color: #7A8598;
  line-height: 1;
  width: 49px;
  white-space: nowrap;
}
.log-box .form-box .my-form-item .inner input{
  padding: 0 15px;
  font-size: 14px;
  color: #050D1A;
  border: none;
  background-color: #F2F2F6;
  border: none;
}
.log-box .form-box .my-form-item .code-box {
  width: 96px;
  height: 46px;
  background-color: #F2F2F6;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  line-height: 46px;
}
.log-box .form-box .my-form-item.code-item .inner{
  width: calc(100% - 106px);
}
.log-box .form-box .my-form-item .code-box img{
  width: 100%;
  height: 100%;
}
.log-box .form-box .my-form-item.margin0 {
  margin-bottom: 10;
}
.log-box .form-box .my-form-item a.link{
  font-size: 14px;
  text-decoration: underline;
  color: #3A5CD9;
  margin-left: 20px;
  line-height: 46px;
}
.log-box .form-box .my-form-item .log-btn{
  width: 100%;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background: #3A5CD9;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
}
/* 业务预约 */
.busi-chose{
  padding-right: 15px;
}
.busi-chose li{
  font-size: 16px;
  color: #7A8598;
  margin-left: 65px;
  cursor: pointer;
}
.busi-chose li:first-child{
  margin-left: 0;
}
.busi-chose li.active {
  position: relative;
  color: #1C2437;
}
.busi-chose li.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #3355D2;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.busi-appo-list{
  min-height: calc(100% - 68px);
  margin-top: 8px;
  background-color: #fff;
}
.busi-appo-list.back-none {
  background: none;
}
.busi-appo-list .invoice-img-box {
  margin: 50px auto 0;
}
.busi-appo-list .invoice-img-box img{
  max-width: 90%;
}
.my-pagination {
  padding: 26px 20px;
  background: #fff;
  text-align: right;
}
.table-bottom .add-btn {
  width: 78px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #3A5CD9;
  border-radius: 3px;
  font-size: 14px;
  color: #FFFFFF;
  margin-left: 20px;
  cursor: pointer;
}
.el-table tr.my-table-high-row {
  background: #F4F4F7;
}
.my-el-dialog {
  height: 60vh;
  overflow: auto;
}
/* 充值缴费 */
.rech-person-info{
  padding: 20px;
  background: #fff;
  border-top: 1px solid #F0F0F5;
}
.rech-person-info .inner {
  width: 100%;
  /* height: 74px; */
  background: #F4F4F7;
  border-radius: 4px;
}
.rech-person-info .inner .item {
  height: 100%;
  border-right: 1px solid#E4E4EF;
  padding: 15px;
}
.rech-person-info .inner .item:last-child{
  border-right: none;
}
.rech-person-info .inner .item .title {
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
  text-align: center;
}
.rech-person-info .inner .item .sub-title {
  font-size: 14px;
  color: #1C2437;
  text-align: center;
}
.rech-amount-box{
  margin-top: 8px;
  background-color: #fff;
  padding: 0 20px 40px;
}
.rech-amount-box .amount-item {
  border-bottom: 1px dashed #DADAE7;
  padding-bottom: 20px;
}
.rech-amount-box .amount-item .title {
  padding: 22px 15px 15px;
  font-size: 14px;
  font-weight: bold;
  color: #1C2437;
  position: relative;
}
.rech-amount-box .amount-item .title::after{
  content: "";
  width: 5px;
  height: 12px;
  background: #3A5CD9;
  border-radius: 1px;
  position: absolute;
  top: 27px;
  left: 0;
}
.rech-amount-box .amount-item .money-box li {
  width: 92px;
  height: 74px;
  background: #F4F4F7;
  border-radius: 4px;
  margin-right: 20px;
  cursor: pointer;
}
.rech-amount-box .amount-item .money-box li:last-child{
  margin-right: 0;
}
.rech-amount-box .amount-item .money-box li .num{
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
  line-height: 1;
}
.rech-amount-box .amount-item .money-box li .unit {
  font-size: 14px;
  color: #1C2437;
  line-height: 1;
  margin-top: 10px;
}
.rech-amount-box .amount-item .money-box li.active{
  background: rgba(58, 92, 217, 0.1);
  border: 1px solid #3A5CD9;
}
.rech-amount-box .amount-item .money-box li.active .num{
  color: #3A5CD9;
}
.rech-amount-box .amount-item .money-box li.active .unit{
  color: #3A5CD9;
}
.rech-amount-box .amount-item .input-box input{
  width: 172px;
  height: 36px;
  background: #F4F4F7;
  border: 1px solid #DADAE7;
  border-radius: 4px;
  padding: 0 18px;
}
.rech-amount-box .amount-item .input-box .tips{
  font-size: 14px;
  color: #7A8598;
  margin-left: 17px;
}
.rech-amount-box .amount-item .pay-det-box p{
  font-size: 14px;
  color: #1C2437;
  padding: 0 13px;
  line-height: 1;
}
.rech-amount-box .amount-item .pay-det-box p:first-child{
  padding-left: 0;
}
.rech-amount-box .amount-item .pay-det-box p .money {
  font-size: 16px;
  font-weight: bold;
  color: #FA9A4B;
  margin-left: 15px;
}
.rech-amount-box .amount-item .pay-det-box p:nth-child(2){
  border-left: 1px solid #DADAE7;
  border-right: 1px solid #DADAE7;
}
.pay-method-box .item{
  width: 192px;
  height: 46px;
  margin-right: 20px;
  padding: 0 10px;
  background: #F4F4F7;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}
.pay-method-box .item .left img.wx{
  width: 36px;
  height: 28px;
}
.pay-method-box .item .left img.zfb {
  width: 32px;
  height: 32px;
}
.pay-method-box .item .left img.blue{
  display: none;
}
.pay-method-box .item .left span{
  font-size: 14px;
  color: #1C2437;
  margin-left: 15px;
}
.pay-method-box .item .right span{
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 1px solid #DADAE7;
  border-radius: 50%;
}
.pay-method-box .item.active .left img.blue {
  display: block;
}
.pay-method-box .item.active .left img.gray {
  display: none;
}
.pay-method-box .item.active .right span{
  background: url(../images/icon_radio_check.png) no-repeat;
  background-size: 100% 100%;
}
.rech-amount-box .sub-box {
  padding-top: 20px;
}
.rech-amount-box .sub-box span {
  display: inline-block;
  width: 128px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #3A5CD9;
  border-radius: 3px;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  user-select: none;
}
/* 个人中心 */
.user-info{
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #F0F0F5;
}
.user-info .user-msg-box {
  width: 206px;
  height: 114px;
  background: #F4F4F7;
  border-radius: 4px;
  padding-left: 20px;
}
.user-info .user-msg-box .img-box{
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}
.user-info .user-msg-box .img-box img{
  width: 100%;
  height: 100%;
}
.user-info .user-msg-box span{
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
  word-break: break-all;
  white-space: pre-wrap;
  padding-right: 10px;
  text-align: center;
}
.user-house{
  margin-left: 15px;
  position: relative;
}
/* .user-house .arrow-box {
  width: 32px;
  height: 114px;
  background: #F4F4F7;
  border-radius: 4px;
  cursor: not-allowed;
  user-select: none;
}
.user-house .arrow-box.can-visit {
  background: #3A5CD9;
  cursor: pointer;
}
.user-house .arrow-box img{
  width: 22px;
}
.user-house .arrow-box img.white {
  display: none;
}
.user-house .arrow-box.right img{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.user-house .arrow-box.can-visit img.white{
  display: block;
}
.user-house .arrow-box.can-visit img.gray {
  display: none;
} */
/* .user-house .house-list {
  width: 727px;
  height: 114px;
  padding: 0 10px;
  overflow-y: auto;
}*/
.user-house .swiper-container {
  width: 727px;
  height: 114px;
  padding: 0 10px;
}
.hose-item{
  min-width: 200px;
  height: 114px;
  background: #F4F4F7;
  border-radius: 4px;
  margin-right: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.hose-item:last-child {
  margin-right: 0;
}
.hose-item .title-box {
  height: 42px;
  line-height: 42px;
  border-bottom: 1px solid #D2D2DF;
  padding-left: 20px;
}
.hose-item .title-box p {
  padding-left: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #1C2437;
  position: relative;
}
.hose-item .title-box p::after {
  content: "";
  width: 5px;
  height: 12px;
  background: #3A5CD9;
  border-radius: 1px;
  position: absolute;
  top: 15px;
  left: 0;
}
.hose-item .info-box {
  padding: 15px 0 0 20px;
}
.hose-item .info-box p {
  font-size: 14px;
  color: #1C2437;
  line-height: 1;
}
.hose-item .info-box p:first-child {
  margin-bottom: 15px;
}
.hose-item.active {
  background: #3A5CD9;
}
.hose-item.active .title-box {
  border-color: #5678F5;
}
.hose-item.active .title-box p {
  color: #fff;
}
.hose-item.active .title-box p::after {
  background: #fff;
}
.hose-item.active .info-box p {
  color: #CBD6FF;
}
.user-house .swiper-button-next,
.user-house .swiper-button-prev {
  width: 32px;
  height: 114px;
  background: #3A5CD9;
  border-radius: 4px;
  user-select: none;
  top: 22px;
}
.user-house .swiper-button-next,
.user-house .swiper-container-rtl .swiper-button-prev {
  right: 0;
}
.user-house .swiper-button-prev,
.user-house .swiper-container-rtl .swiper-button-next {
  left: 0;
}
.user-house .swiper-button-next:after,
.user-house .swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}
.user-house .swiper-button-next.swiper-button-disabled:after,
.user-house .swiper-button-prev.swiper-button-disabled:after {
  color: #B6BBCD;
}
.user-house .swiper-button-next.swiper-button-disabled,
.user-house .swiper-button-prev.swiper-button-disabled {
  background: #F4F4F7;
  opacity: 1;
}
.user-query-box{
  background-color: #fff;
  margin-top: 8px;
}
.user-query-box .title-box {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #F0F0F5;
  padding-left: 20px;
}
.user-query-box .title-box img{
  width: 17px;
  height: 18px;
  margin-right: 13px;
}
.user-query-box .title-box span{
  font-size: 16px;
  font-weight: bold;
  color: #1C2437;
}
.user-query-box .query-list {
  width: 100%;
  height: 470px;
  padding-top: 90px;
}
.user-query-box .query-list li{
  margin-right: 40px;
  cursor: pointer;
  user-select: none;
}
.user-query-box .query-list li:last-child{
  margin-right: 0;
}
.user-query-box .query-list li img{
  width: 130px;
  height: 112px;
  margin-bottom: 25px;
}
.user-query-box .query-list li span{
  font-size: 16px;
  color: #1C2437;
}
/* 缴费记录详情 */
.go-back{
  width: 78px;
  height: 32px;
  line-height: 32px;
  background: #3A5CD9;
  border-radius: 3px;
  user-select: none;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
}
.go-back img{
  width: 16px;
  height: 14px;
  margin-right: 8px;
}
/* 缴费详情 */
/* 自定义表格样式 */
.my-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #EBEEF5;
  border-left: 1px solid #EBEEF5;

}
.has-back .text-r{
  background-color: #f5f8fb;
}

.my-table .text-r {
  text-align: right;
  color: #1C2437;
}
.my-table td {
  word-break: break-all;
  word-wrap: break-word;
  border-right: 1px solid #EBEEF5;
  border-bottom: 1px solid #EBEEF5;
  font: 500 14px Arial;
  padding: 10px 10px;
}
.tab-pay-det{
  margin-bottom: 20px;
}
.tab-pay-det tr td.title{
  background: #F4F4F7;
  opacity: 0.5;
}
/* 报装详情 */
.newsp-bind{
  background-color: #fff;
  padding: 20px;
  margin-bottom: 8px;
}
.newsp-bind .tab-pay-det {
  margin-bottom: 0;
}
.handle-state-box{
  background-color: #fff;
  padding: 20px;
}
.pub-label{
  padding-left: 14px;
  font-size: 14px;
  font-weight: bold;
  color: #1C2437;
  position: relative;
  line-height: 1;
}
.pub-label::after{
  content: "";
  width: 5px;
  height: 12px;
  background: #3A5CD9;
  border-radius: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
/* 报修详情 */
.fault-msg{
  font-size: 14px;
  font-weight: 400;
  color: #1C2437;
  line-height: 1.8;
  margin-top: 15px;
}
.handl-person{
  border-top: 1px dashed #DADAE7;
  padding-top: 20px;
  margin-top: 40px;
}
.handl-person p{
  text-align: right;
  font-size: 14px;
  color: #7A8598;
}
/* 投诉详情 */
.dashed-line{
  border-top: 1px dashed #DADAE7;
  margin: 20px 0;
}
.steps-box{
  padding: 50px 0 0 0;
}
.steps-box .item .line{
  border-top: 1px dashed #DADAE7;
  flex: 1;
}
.steps-box .item{
  flex: 1;
}
.steps-box .item .step-box{
  position: relative;
}
.steps-box .item .step-box .step-cicle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #B6BBCD;
  margin: 0 20px;
}
.steps-box .item .step-box .step-cicle .inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.steps-box .item .step-box .state-box {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #1C2437;
}
.steps-box .item .step-box .state-box .state{
  font-size: 16px;
  font-weight: bold;
}
.steps-box .item .step-box .state-box .time {
  font-size: 16px;
  margin-top: 25px;
}
.steps-box .item.active .step-box .step-cicle{
  background-color: #3A5CD9;
}
.steps-box .item.active .step-box .state-box{
  color: #7A8598;
}
/* 用气分析 */
#analysisChart {
  width: 90%;
  height: 550px;
  margin: 30px auto 0;
}

/* 文章详情 */
.article-head{
  padding: 5px 0 40px 0;
  border-bottom: 1px dashed #DADAE7;
}
.article-head .title {
  font-size: 14px;
  font-weight: bold;
  color: #1C2437;
}
.article-head .lisher {
  font-size: 14px;
  color: #3A5CD9;
  margin-top: 20px;
}
.article-cont,
.article-cont p,
.article-cont span{
  /*padding: 35px 33px;*/
  font-size: 14px;
  font-family: Microsoft YaHei !important;
  font-weight: 400;
  color: #7A8598 !important;
  /*line-height: 37px;*/
}
.article-time{
  padding: 0 33px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #1C2437;
}
/* 服务网点 */
.net-work-serach .inner{
  width: 600px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 0 32px;
  margin-top: 20px;
}
.net-work-serach .inner input{
  width: 90%;
  font-size: 14px;
}
.net-work-serach .inner img{
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.net-work-map{
  margin-top: 20px;
  height: 60vh;
}


/* 修改头像弹窗 */
.head-opload-box{
  display: flex;
  justify-content: center;
}
.head-preview{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 25px;
}
.head-preview .img-box {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
}
.head-preview .img-box img{
  width: 100%;
  height: 100%;
}
.head-preview span{
  font-size: 14px;
  color: #7A8598;
}


.avatar-uploader .el-upload {
  border: 1px dashed #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.avatar-uploader .el-upload:hover {
  border-color: #409EFF;
}
.avatar-uploader-icon {
  font-size: 28px;
  color: #7A8598;
  width: 178px;
  height: 178px;
  /* line-height: 178px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F2F2F6 ;
}
.avatar-uploader-icon .add {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  background: #3355D2;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
}
.avatar-uploader-icon .tip-text {
  font-size: 14px;
  color: #7A8598;
  margin-top: 10px;
}
.avatar {
  width: 178px;
  height: 178px;
  display: block;
}
/* 支付成功 */
.pay-success-box .img-box {
  width: 332px;
  height: 315px;
}
.pay-success-box .img-box img{
  width: 100%;
  height: 100%;
}
.pay-success-box .text1 {
  font-size: 16px;
  color: #1C2437;
}
.pay-success-box .text1 span{
  font-weight: bold;
}
.contin-pay{
  display: inline-block;
  width: 150px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #3A5CD9;
  border-radius: 3px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-top: 60px;
}

@media screen and (max-width:1420px) {
  .w1200{
    width: 1200px;
  }
  .buma-scan-box .busi-guide,
  .in-notic-box,
  .troub-shoot{
    width: 820px;
  }
  .buma-scan-box .scan-code,
  .in-video-box,
  .safe-use-gas{
    width: 360px;
  }
  .buma-scan-box .busi-guide li .img-box{
      width: 240px;
      height: 140px;
  }
  .buma-scan-box .scan-code li img{
    width: 135px;
    height: 135px;
  }
  .in-notic-box .left{
    width: 306px;
  }
  .in-notic-box .right{
    width: 430px;
  }
  .safe-use-gas li{
    width: 174px;
  }
  .troub-shoot .left{
    width: 306px;
  }
  .troub-shoot .troub-item{
    width: 217px;
  }
  .section-inner-box .left-menu-box{
    width: 210px;
  }
  .section-inner-box .right-cont-box{
    width: 971px;
  }
  .pub-head .head-inner .logo-box img{
    height: 90%;
  }
  .user-info .user-msg-box{
    width: 190px;
  }
  .user-info .user-msg-box .img-box{
    width: 79px;
    height: 79px;
  }
  .user-house .swiper-container{
    width: 650px;
  }
}
