@import "../../css/oksub.css";

.module {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  color: #262626;
}
.top {
  line-height: 38px;
  background-color: #eee;
}
.top .left {
  float: left;
  display: flex;
  align-items: center;
}
.top .left .addr {
    position: relative;
    margin-left: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .2s;
}

.top .left .addr img {
    height: 15px;
    margin-right: 2px;
}

.top .left .addr:before {
    position: absolute;
    top: 17px;
    right: -14px;
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #555;
    transition: all .2s;
}

.top .left .addr:hover .form-city {
    display: block;
}

.top .left .addr:hover:before {
    transform: rotate(180deg);
}

.top .left .addr .form-city {
    display: none;
    position: absolute;
    top: 37px;
    left: -16px;
    z-index: 99;
    cursor: default;
}

.top .left .addr .form-city .box {
    position: relative;
    width: 300px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 1px 1px #ddd;
    box-sizing: border-box;
}

.top .left .addr .form-city .box:before {
    position: absolute;
    top: -5px;
    left: 40px;
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(135deg);
    box-shadow: 0 0 1px 1px #ddd;
}

.top .left .addr .form-city .box:after {
    position: absolute;
    top: 0px;
    left: 35px;
    content: '';
    width: 20px;
    height: 10px;
    background: #fff;
}

/* .top .left .addr .form-city .box .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ccc;
} */
.top .left .addr .form-city .citys {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.top .left .addr .form-city .citys .hot-city > p {
    line-height: 20px;
    color: #777;
    padding-bottom: 10px;
}

.top .left .addr .form-city .citys .items {
    overflow: hidden;
}

.top .left .addr .form-city .citys .item {
    line-height: 20px;
    color: #333;
    font-size: 13px;
    float: left;
    margin: 0 12px 8px 0;
    cursor: pointer;
    transition: color .1s;
}

.top .left .addr .form-city .citys .item:hover,
.top .left .addr .form-city .citys .item.active {
    color: orange;
}

.top .left .addr .form-city .citys .start-city {
    margin-top: 20px;
}

.top .left .addr .form-city .citys .start-city .items {
    overflow: hidden;
    margin-bottom: 5px;
}

.top .left .addr .form-city .citys .start-city .items:nth-last-child(1) {
    margin-bottom: 0;
}

.top .left .addr .form-city .citys .start-city .items > span {
    float: left;
    width: 30px;
    line-height: 20px;
    color: orange;
    font-weight: bold;
}

.top .left .addr .form-city .citys .start-city .items > p {
    overflow: hidden;
}

.top .right {
    float: right;
}

.top .right > div {
    position: relative;
    float: right;
    margin-left: 15px;
    cursor: pointer;
}
.top .right > div:after {
  position: absolute;
  top: 12px;
  right: -8px;
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #999;
}
.top .right > div:nth-child(1):after {
  width: 0;
}
.top .right .m-code {
  position: relative;
}
.top .right .m-code:hover .code-box {
  display: block;
}
.top .right .code-box {
  display: none;
  position: absolute;
  top: 38px;
  left: 50%;
  width: 140px;
  height: 140px;
  padding: 4px;
  margin-left: -77px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 #ccc;
  border-radius: 4px;
}
.top .right .code-box .img {
    /*position: relative;*/
    /*width: 100%;*/
    /*height: 100%;*/
    position: fixed;
    width: 100px;
    height: 100px;
}
.top .right .code-box .img:before {
  position: absolute;
  top: -12px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  margin-left: -4px;
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent #eee;
}
.top .right .code-box .img:after {
  position: absolute;
  top: -11px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  margin-left: -4px;
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff;
}
.top .right .code-box .img img {
  width: 100%;
  height: 100%;
}

.slogan {
  width: 1200px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.slogan .module {
  position: relative;
  width: 410px;
  /* height: 36px; */
}
.slogan .module .select {
  width: 75px;
  height: 38px;
  padding: 0 5px;
  outline: none;
  border: 1px solid #ddd;
  border-right: 0;
  float: left;
}
.slogan .module input {
  width: 280px;
  height: 38px;
  font-size: 14px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-right: none;
  outline: none;
  box-sizing: border-box;
}
.slogan .module button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 38px;
  border: none;
  color: #fff;
  background-color: orange;
  border-radius: 0 4px 4px 0;
}

.header{
	height: 46px;
	background: orange;
}

/*main-nav-item*/
.main-nav .main-nav-item,
.main-nav .main-nav-item-more{
	position: relative;
	z-index: 22;
	float:left;
	height: 46px;
	display:none;
}
.main-nav .open{
	background-color: #FE678A;
}
.main-nav .hover{
	height: 44px;
	border-top:2px solid #fdbf08;
	background-color: #fff;
}
.main-nav .active{
	background: #fdbf08;
	color:#fff;
	/*box-shadow: 0 0 3px #666;*/
}
/*main-nav-link*/
.main-nav .main-nav-item .main-nav-link{
	position: relative;
	z-index: 24;
	display: block;
	height: 46px;
	line-height: 46px;
	padding-left:10px;
	padding-right:10px;
	font-size: 16px;
	color: #fff;
}
.main-nav .hover .main-nav-link{
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	color: #4c5a65;
}
.main-nav .active .main-nav-link{
	background-color: #fdbf08;
	color: #fff;
}
.main-nav .active.hover .main-nav-link{
	background-color: #fff;
	color: #4c5a65;
}
.main-nav .main-nav-item-more .main-nav-link{
	position: relative;
	z-index: 24;
	display: block;
	height: 46px;
	line-height: 46px;
	padding-left:10px;
	padding-right:25px;
	font-size: 16px;
	color: #fff;
}
.main-nav .has-sub-nav .main-nav-link{
	padding-right:25px;
}

/*main-nav-arrow*/
.main-nav .main-nav-item .main-nav-link .main-nav-arrow,
.main-nav .main-nav-item-more .main-nav-link .main-nav-arrow{
	display: none;
	position: absolute;
	right:10px;
	top: 50%;
	z-index: 25;
	width: 11px;
	height: 6px;
	margin-top:-3px;
	background-image: url('/home/img/sprite.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	line-height: 0;
	font-size: 0;
}
.main-nav .has-sub-nav .main-nav-link .main-nav-arrow,
.main-nav .main-nav-item-more .main-nav-link .main-nav-arrow{
	display: block;
}
.main-nav .hover .main-nav-link .main-nav-arrow{
	background-position: 0 -6px;
}

/*sub-nav*/
.main-nav .main-nav-item .sub-nav-wrapper{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 23;
	width: 200px;
	padding: 10px;
	background-color:#fff;
	box-shadow: 0 0 3px #666;
}
.sub-nav-wrapper .sub-nav{
	line-height: 30px;
}
.sub-nav-wrapper .sub-nav .sub-nav-item{
	height: 30px;
	border-bottom:1px dotted #CCCCCC;
    position: relative;
}
.sub-nav-wrapper .sub-nav .sub-nav-item a{
    padding-right: 10px;
}
.main-nav .sub-nav-wrapper .sub-nav .sub-nav-item .ss-nav{
    position: absolute;
    left: 195px;
    top: -10px;
    padding: 0 20px;
    background: none;
    box-shadow: none;
    display: none;
}
.main-nav .sub-nav-wrapper .sub-nav .sub-nav-item .ss-nav ul{
    padding: 10px 20px;
    max-height: 330px;
    width: 380px;
    background-color: #FFF;
    box-shadow: 0 0 3px #666;
    overflow-y: auto;
    overflow-x: hidden;
}
.main-nav .sub-nav-wrapper .sub-nav .sub-nav-item .ss-nav ul li{
    border-bottom:1px dotted #CCCCCC;
}
.sub-nav-wrapper .sub-nav .sub-nav-item:nth-last-child(1),
.main-nav .sub-nav-wrapper .sub-nav .sub-nav-item .ss-nav ul li:nth-last-child(1){
    border: 0;
}
.sub-nav-arrow{
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 5px;
    height: 10px;
    margin-top: -5px;
    background: url('/home/img/subnav-icon.png') no-repeat;
}
.par-color{
    color: #fdbf08;
}

/*main-nav-drowdown-list*/
.main-nav .main-nav-item-more .main-nav-dropdown-list{
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	width: 150px;
	background-color: #fdbf08;
	background-color: rgba(254,58,102,0.8);
}
.main-nav .open .main-nav-dropdown-list{
	display: block;
}
.main-nav-dropdown-list .main-nav-item{
	float: none;
	width: 150px;
	height: 40px;
}
.main-nav-dropdown-list .hover{
	border:0;
	background-color: #FE3462;
}
.main-nav-dropdown-list .main-nav-item .main-nav-link{
	width: 120px;
	height: 40px;
	line-height: 40px;
	padding-left:20px;
	padding-right: 10px;
	text-align: center;
}
.main-nav-dropdown-list .hover .main-nav-link{
	height: 40px;
	line-height: 40px;
	background-color:#FE3462;
	color: #fff !important;
}
.main-nav-dropdown-list .main-nav-item .main-nav-link .main-nav-arrow{
	display: none;
	position: absolute;
	left:10px;
	right: auto;
	top: 50%;
	z-index: 25;
	width: 6px;
	height: 11px;
	margin-top:-6px;
	background-image: url('/home/img/sprite.png');
	background-repeat: no-repeat;
	background-position: -12px 0;
	line-height: 0;
	font-size: 0;
}
.main-nav-dropdown-list .has-sub-nav .main-nav-link .main-nav-arrow{
	display: block;
}
.main-nav-dropdown-list .main-nav-item .sub-nav-wrapper{
	width: 300px;
	left: -320px;
	top: 0;
}

.bread-crumb {
  height: 50px;
  display: flex;
  align-items: center;
}
.bread-crumb .mark {
  margin: 0 4px;
}

/* 底部 */
.footer {
  padding: 20px;
  margin-top: 40px;
  color: #fff;
  background-color: orange;
}
.footer .content {
  display: flex;
  justify-content: space-between;
}
.footer p {
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.footer .content .foot {
  width: 100px;
  height: 100px;
  background-color: #eee;
}

.footer .content .foot img {
    width: 100%;
    height: auto;
}

/* 筛选 */
.filters {
  position: relative;
  padding: 20px;
  border: 1px solid #eee;
}
.filters .btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 0 15px;
  line-height: 28px;
  color: #fff;
  font-size: 13px;
  background-color: orange;
  border-radius: 4px;
  cursor: pointer;
}
.filters .items {
  display: flex;
  margin-bottom: 20px;
  font-size: 14px;
}
.filters .items:nth-last-child(1) {
  margin-bottom: 0;
}
.filters .items label {
  flex-basis: 70px;
  text-align: right;
}
.filters .items .tags {
  display: flex;
}
.filters .items .tags .tag {
  padding: 2px 10px;
  margin: 0 8px;
  cursor: pointer;
  border-radius: 2px;
  transition: .2s all;
}
.filters .items .tags .tag:hover {
  background-color: #ddd;
}
.filters .items .tags .tag.checked {
  color: #fff;
  background-color: orange;
}
.filters .custom-filter .item {
  float: left;
}
.filters .custom-filter label {
  line-height: 32px;
}
.filters .custom-filter .item .select {
  width: 150px;
  padding: 5px 4px;
  border: 1px solid #eee;
  font-size: 12px;
  font-family: 'Source Han Sans CN';
}
.filters .custom-filter .item .select option:first-child {
  color: #999;
}
.filters .custom-filter .plan-date {
  line-height: 32px;
  margin: 0 15px;
}
.filters .custom-filter .plan-date .date-input {
  height: 32px;
  padding: 0 5px;
  border: 1px solid #eee;
  box-sizing: border-box;
}
.filters .custom-filter .key-word {
  margin-left: 15px;
}
.filters .custom-filter .key-word .key-input {
  height: 32px;
  padding: 0 5px;
  border: 1px solid #eee;
  box-sizing: border-box;
}

/* 表格 */
.table-full .table-list {
  margin-top: 20px;
}
.table-full .table-list .table {
  table-layout: fixed;
  width: 100%;
  font-size: 12px;
  background-color: #FFF;
  border-spacing: 0;
  border: 1px solid #DDDDDD;
  border-collapse: separate;
  border-top: 0;
  border-spacing: 0;
  color: #666;
  text-align: center;
  border-color: #eee;
  border-left: 0;
}
.table-full .table-list .table thead, .table-full .table-list .table th {
  border-color: #85A170;
  background-color: orange;
  color: #fff;
}
.table-full .table-list .table th {
  padding: 8px 5px;
  font-size: 12px;
  border-bottom: 0;
}
.table-full .table-list .table th, .table-full .table-list .table td {
  border-left: 1px solid #eee;
}
.table-full .table-list .table td {
  position: relative;
  padding: 6px 8px;
  border-top: 1px solid #ddd;
  vertical-align: middle;
}
.table-full .table-list .table td span.title, .table-full .table-list .table td a.title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.table-full .table-list .table td a.title:hover {
  color: orange;
  cursor: pointer;
}
.table-full .table-list .table td .status {
  display: inline-block;
  padding: 3px 8px;
  color: #fff;
  background-color: orange;
}
.table-full .table-list .table td .view {
  cursor: pointer;
}

.qrcode-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 0;
  height: 0;
  color: #fff;
  font-size: 12px;
  background-color: rgba(0,0,0,.75);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.qrcode-box.show {
  width: 100%;
  height: 100%;
}
.qrcode-box .qrcode {
  width: 130px;
  height: 130px;
  padding: 3px;
  margin-bottom: 8px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
}
.qrcode-box .code {
  width: 100%;
  height: 100%;
}

.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  padding: 35px;
  /*background-color: #ccc;*/
}
.back-top img {
  width: 100%;
  height: auto;
}

.watch-word {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.watch-word .item {
    position: relative;
    width: 25%;
    font-size: 13px;
    color: #666;
    text-align: center;
}
.watch-word .item img {
    max-width: 100px;
    margin-bottom: 10px;
}
.watch-word .item:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    width: 1px;
    height: 60px;
    margin-top: -30px;
    background-color: #eee;
}
.watch-word .item:nth-last-child(1):after {
    width: 0;
}

.overaly {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
}
.overaly .content {
  position: fixed;
  bottom: -500px;
  left: 50%;
  z-index: 1000;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  transform: translate(-50%, 50%);
}
.overaly.show {
  display: block;
}
.overaly .content.show {
  bottom: 50%;
}
