@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Microsoft YaHei', arial, sans-serif;
}

li {
    list-style: none;
}


/*全局样式*/

body {
    color: #333;
    background: #ffffff;
    font: 16px / 30px 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}
html, body {
    width: 100%;
    margin: 0 auto;
}



/*= 清除浮动=*/

.clear {
    clear: both;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    overflow: hidden;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0px;
    clear: both;
    visibility: hidden;
    font-size: 0px;
}

:focus {
    outline: 0
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer
}


/* Hides from IE-mac \*/

* html .clearfix {
    height: 0%;
}


/* End hide from IE-mac */

*+html .clearfix {
    min-height: 0%;
}


/* 针对IE7 */

*+html .clearfix {
    min-height: 0%;
}


/*原文件配置*/

body {
    color: #333;
    background: #ffffff;
    font: 16px/30px 'Microsoft YaHei', arial, sans-serif;
    min-width: 320px;
}

.my-body{
	min-height: 100vh;
}
.my-body .footer .copyright{
	margin-top: 0;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #44916C;
}


/*块级转化*/

.di_in {
    display: inline-block;
}

.di_no {
    display: none;
}

.di_bl {
    display: block;
}


/*原文件配置  end*/


/*横向居中*/

.te_c {
    text-align: center;
}


/*相对定位*/

.p_r {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-v {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: pace-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-warp {
    flex-flow: wrap
}

.flex-column {
    flex-flow: column
}

.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container  {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    background: #007CC3;
    width: 100%;
    height: 160px;
}

.header .head {
    height: 100px;
    padding-top: 40px;
}

.header .head .logo img {
    height: 30px;
    margin-right: 10px;
}

.header .head .logo .txt {
    color: #FFF;
    font-size: 20px;
}

.header .head .search {
    height: 36px;
    overflow: hidden;
    background-color: #FFF;
    width: 370px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.header .head .search input[type='text'] {
    font-size: 14px;
    padding-left: 20px;
}

.header .head .search span {
    width: 1px;
}

.header .head .search span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #eee;
}

.header .head .search input[type='submit'] {
    width: 50px;
    background: url(../images/search.png)no-repeat center;
}

.header .head .info {
    color: #FFF;
}

.header .head .login-btn,
.header .head .reg-btn {
    color: #FFF;
    line-height: 30px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 40px;
    font-size: 14px;
}

.header .head .login-btn {
    background-image: url(../images/login.png);
    margin-right: 40px;
}

.header .head .reg-btn {
    background-image: url(../images/reg.png);
		margin-right: 40px;
}

.header .head .OA{
	color: #fff;
}

.header .head .info .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.header .head .top-box{
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 14px;
}

.header .head .top-box .line{
	width: 1px;
	height: 10px;
	background: #fff;
	margin: 0 10px;
}

.nav {
    background-color: rgba(255, 255, 255, .1);
    line-height: 50px;
    width: 100%;
    margin-top: 10px;
}

.nav li {
    margin-right: 50px;
}

.nav li>a {
    font-size: 18px;
    color: #FFF;
		padding: 0 10px;
}

.nav li>a:hover,
.nav li.on>a {
    font-weight: bold;
		background: #44916C;
}

.banner {
    overflow: hidden;
}

.banner .container {
    height: 190px;
    padding-top: 20px;
    overflow: hidden;
}

.banner .title {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.5;
}

.banner .date {
    font-weight: bold;
    margin-top: 10px;
    font-size: 18px;
}

.banner .date::before {
    content: '';
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.banner .text {
    margin-top: 20px;
}

.banner .now {
    text-align: right;
    margin-top: 60px;

}

.banner .now a {
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 45px;
}

.banner .now a:hover {
    text-decoration: underline;
}

.banner .swiper-pagination-bullet {
    background-color: #FFF;
    width: 10px;
    height: 10px;
    margin: 0 10px !important;
}





.banner .small-star-img{
    position: absolute;
    width: 10px;
    height: 10px;
}
.banner .big-star-img{
    position: absolute;
    width: 20px;
    height: 20px;
}
.banner .star-01{
    top: 12%;
    left: 15%;
}
.banner .star-02{
    top: 18%;
    left: 18%;
}
.banner .star-03{
    top: 12%;
    left: 22%;
}
.banner .star-04{
    top: 12%;
    right: 20%;
}
.banner .star-05{
    bottom: 18%;
    right: 17%;
}
.banner .star-06{
    top: 15%;
    right: 15%;
}
.banner .star-07{
    top: 10%;
    right: 12%;
}
.banner .star-08{
    top: 55%;
    right: 12%;
}


.banner .swiper-button-prev{
    left: 129px;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.banner .swiper-button-prev .arrow-box{
    width: 24px;
    height: 24px;
    background: url("../images/swiper_right.png") no-repeat center;
    background-size: 100% 100%;
    transform: rotate(180deg);
}
.banner .swiper-button-next{
    right: 73px;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}
.banner .swiper-button-next .arrow-box{
    width: 24px;
    height: 24px;
    background: url("../images/swiper_right.png") no-repeat center;
    background-size: 100% 100%;
}

.banner .ban1 {
    background-color: #C01E20;
    color: #FDDCA6;
}


.banner .ban1 .date::before {
    background-image: url(../images/date1.svg);
}

.banner .ban1 .now a {
    color: #FDDCA6;
    background-image: url(../images/arrow2.svg);
}

.banner .ban2 {
    background: url(../images/ban.png) no-repeat center top;
    background-size: 100vw 50vh; /* 宽度=视口宽度，高度=视口高度50% */
    color: #FFF;
}

.banner .ban3{
    background: url(../images/swiper_top.png) no-repeat center top;
    background-size: 100vw 50vh; /* 宽度=视口宽度，高度=视口高度50% */
    color: #FFF;
}

.banner .light-img{
    position: absolute;
    width: 109px;
    height: 109px;
    left: 5%;
    bottom: 0;
}
.banner .clock-img{
    position: absolute;
    width: 58px;
    height: 58px;
    right: 5%;
    bottom: 0;
}




.banner .ban2 .title {
    text-shadow: 5px 5px 15px rgba(0, 0, 0, .1);
}

.banner .ban2 .date::before {
    background-image: url(../images/date2.svg);
}

.banner .ban2 .now a {
    color: #FFF;
    background-image: url(../images/arrow3.svg);
}

.footer {
    background-color: #d2d2d2;
    padding: 20px 0;
    padding-bottom: 20px;
}

.index-footer{
	background-color: #2D3236;
	padding: 0;
	padding-bottom: 20px;
	color: #fff;
}

.index-footer a{
	color: #fff;
}

.footer .erwma {
    width: 90px;
    margin-left: 25px;
}

.footer .erwma .pic {
    width: 100%;
    height: 90px;
    overflow: hidden;
}

.footer .erwma .pic img {
    width: 100%;
}

.footer .title {
    font-size: 24px;
}

.footer .txt {
    width: 50%;
    font-size: 18px;
    margin-top: 20px;
}

.footer .copyright {
    margin-top: 30px;
    border-top: 1px #FFF solid;
    padding-top: 30px;
}

.footer .copyright a {
    margin-right: 10px;
    text-decoration: underline;
}





.home-kecheng {
    width: 520px;
    margin-top: 30px;
    margin-bottom: 90px;
    margin-right: 45px;
}

.home-kecheng ul {
    margin-top: 24px;
}

.home-kecheng li {
    margin-bottom: 20px;
}

.home-kecheng li:last-child {
    margin-bottom: 0;
}

.home-kecheng .status-box{
    margin-right: 14px;
    color: #fff;
    border-radius: 4px;
    width: 62px;
    height: 26px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.home-kecheng .status-red{
    background: #FF4810;
}

.home-kecheng .status-blue{
    background: #00A0FC;
}

.home-kecheng .status-gray{
    background: #DDDDDD;
}

.home-kecheng .li-content .tit{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.home-kecheng .li-content .date{
    margin-top: 8px;
    font-size: 14px;
}

.home-kecheng .li-content .line{
    width: 1px;
    height: 16px;
    background: #DDDDDD;
    margin: 0 15px;
}

.home-kecheng .tit {
    font-weight: bold;
}

.home-kecheng .date {
    color: #999;
}

.home-kecheng .des {
    display: none;
    color: #666;
    margin-top: 10px;
}

.home-kecheng li.on {
    padding-top: 28px;
}

.home-kecheng li.on>div {
    display: block;
    background-color: #EBEBEB;
    padding: 20px;
}

.home-kecheng li.on .tit {
    font-size: 24px;
}

.home-kecheng li.on .date {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #F4930B;
    width: 115px;
    line-height: 28px;
    color: #FFF;
    text-align: center;
}

.home-kecheng li.on .des {
    display: block;
}





.home-notice {
    width: 357px;
    margin-top: 30px;
    margin-bottom: 90px;
}

.home-notice .collect-box{
	margin-top: 52px;
	border-radius: 10px;
	color: #fff;
	padding: 3px 0;
	font-size: 24px;
	font-weight: bold;
	background: url("../images/collect_bg.png") no-repeat center;
	background-size: 100% 100%;
}

.home-notice .collect-box .update-img{
	width: 72px;
	height: 72px;
	margin-right: 9px;
}

.home-notice .collect-box .update-arrow{
	width: 46px;
	height: 32px;
	margin-left: 60px;
}

.home-notice .code-box{
    background: linear-gradient(60deg,#0192E599,#007CC3);
    padding: 7px 32px 20px 32px;
    border-radius: 10px;
    margin-top: 26px;
    margin-bottom: 20px;
}

.home-notice .code-box .fly-img{
    position: absolute;
    width: 114px;
    height: 114px;
    left: 0;
    bottom: 0;
    z-index: 0;
}

.home-notice .code-box .code-tit{
    font-size: 24px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 49px;
}

.home-notice .code-box .code-ipt{
    margin-top: 8px;
    border-radius: 5px;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #DDDDDD;
}

.home-notice .code-box .code-ipt::placeholder{
    font-size: 16px;
    color: #999999;
}

.home-notice .code-box .confirm-btn{
    margin: 25px auto 0 auto;
    border-radius: 30px;
    background: linear-gradient(to bottom, #17D077,#44916C);
    color: #FFF;
    font-size: 18px;
    width: 120px;
    padding: 8px 0;
}

.home-notice .call-box{
	margin-top: 26px;
	background: #E8F5FF;
	border-radius: 10px;
	padding: 17px 6px 18px 37px;
}

.home-notice .call-box .tit{
	font-size: 24px;
	color: #007CC3;
	font-weight: bold;
	letter-spacing: 5%;
}

.home-notice .call-box .call-img{
	width: 31px;
	height: 31px;
	margin-right: 11px;
	margin-left: 51px;
}

.home-notice .call-box .info{
	margin-top: 10px;
	font-size: 14px;
	color: #333333;
}
.home-notice .call-box .info span{
	margin-top: 15px;
	line-height: 1;
}




.home-notice ul {
    margin-top: 15px;
}

.home-notice li {
    margin-bottom: 15px;
}

.home-notice li:last-child {
    margin-bottom: 0;
}

.home-notice .tit {
    font-weight: bold;
}

.home-notice .date {
    color: #999;
}

.home-kecheng .title,
.home-notice .title {
    border-bottom: 1px #888 solid;
    line-height: 1;
		padding-bottom: 15px;
}

.home-kecheng .title>div,
.home-notice .title>div {
    font-size: 24px;
    font-weight: bold;
}

.home-kecheng .title a,
.home-notice .title a {
    position: absolute;
    right: 0;
    top: 10%;
    /* transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%); */
    color: #666;
}

.home-kecheng .title a:hover,
.home-notice .title a:hover {
    color: #007CC3;
}

.notice,
.notice-details {
    margin-bottom: 70px;
    margin-top: 40px;
}

.notice li {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px #999 solid;
}

.notice li .tit {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}

.notice li .des {
    color: #999;
    margin-top: 15px;
    font-size: 14px;
}

.notice li .date {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.notice-details h1 {
    font-size: 20px;
}

.notice-details .info {
    font-size: 18px;
    margin-top: 20px;
    color: #666;
}

.notice-details .info .click {
    background: url(../images/click.png)no-repeat left center;
    padding-left: 40px;
    margin-left: 100px;
}

.notice-details .body {
    font-size: 18px;
    line-height: 2;
    margin-top: 40px;
}

.sort {
    font-size: 18px;
    margin-top: 30px;
}

.sort a {
    margin-right: 70px;
    line-height: 2;
}

.sort a.on {
    color: #44916C;
}

.kecheng {
    margin-bottom: 70px;
}

.kecheng .item {
    width: 48%;
    margin-right: 4%;
    background-color: #FFF;
    border: 2px #FFF solid;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    margin-top: 35px;
    padding: 20px;
}

.kecheng .item:nth-child(even) {
    margin-right: 0;
}

.kecheng .item .pic {
    width: 280px;
    height: 185px;
    overflow: hidden;
    margin-right: 20px;
}

.kecheng .item .pic span {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, .5);
    color: #FFF;
    line-height: 28px;
    padding: 0 15px;
}

.kecheng .item .tit {
    font-size: 18px;
    line-height: 1.3;
}

.kecheng .item .time {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.kecheng .item .money {
    color: #EE755D;
    font-size: 18px;
    margin-top: 5px;
}

.kecheng .item .click {
    background: url(../images/click1.png)no-repeat left center;
    padding-left: 20px;
    font-size: 14px;
    margin-top: 10px;
    color: #999;
}

.kecheng .item:hover {
    border-color: #44916C;
}

.kecheng-baoming {
    background-color: #F8FAFC;
    padding-bottom: 70px;
}

.kecheng-baoming .info {
    width: 100%;
    padding-top: 40px;
    background-image: linear-gradient(rgba(0, 160, 252, .2), #FFFFFF);
}

.kecheng-baoming .info h1 {
    font-size: 32px;
}

.kecheng-baoming .info .date {
    color: #666;
    background: url(../images/date3.png)no-repeat left center;
    padding-left: 30px;
    margin-top: 20px;
}

.kecheng-baoming .info .address {
    color: #666;
    background: url(../images/address.png)no-repeat left center;
    padding-left: 30px;
    margin-top: 10px;
}

.kecheng-baoming .info .time {
    justify-content: flex-end;
    color: #666;
    margin-top: 50px;
}

.kecheng-baoming .info .time span {
    font-size: 18px;
    color: #FF583D;
}

.kecheng-baoming .info .m-con {
    margin-top: 20px;
}

.kecheng-baoming .info .money {
    color: #FF583D;
    font-size: 18px;
}

.kecheng-baoming .info .money span {
    font-size: 30px;
}

.kecheng-baoming .info .m-con button {
    border: 0;
    background-color: #FF583D;
    color: #FFF;
    height: 26px;
    padding: 0 15px;
    border-radius: 10px 0 10px 0;
    -webkit-border-radius: 10px 0 10px 0;
    -moz-border-radius: 10px 0 10px 0;
    -ms-border-radius: 10px 0 10px 0;
    -o-border-radius: 10px 0 10px 0;
    margin-left: 20px;
}

.kecheng-baoming .info .btn {
    justify-content: flex-end;
}

.kecheng-baoming .info .btn a {
    line-height: 38px;
    width: 120px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #FFF;
    font-size: 18px;
    background-color: #44916C;
    box-shadow: 5px 5px 10px rgba(68, 145, 108, 0.2);
}

.kecheng-baoming .info .tit {
    color: #44916C;
    font-size: 18px;
    margin-top: 40px;
}

.kecheng-baoming .info .tit span {
    padding: 20px;
}

.kecheng-baoming .info .tit span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #44916C;
}

.kecheng-baoming .body {
    margin-top: 15px;
    background-color: #FFF;
}

.kecheng-baoming .body .txt {
    position: absolute;
    right: 20px;
    top: 30px;
    font-size: 18px;
    background-color: #FFF;
    z-index: 10;
    line-height: 38px;
    border: 1px #44916C solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 0 15px;
    color: #44916C;
}

.kecheng-baoming .body img {
    max-width: 100%;
}

.kecheng-baoming .down {
    font-size: 18px;
}

.kecheng-baoming .down a {
    background: url(../images/down.png)no-repeat left center;
    padding-left: 40px;
    margin-top: 40px;
    font-size: 16px;
}

.cert-content {
    background-color: #F8FAFC;
    padding-bottom: 70px;
}

.cert-content .info {
    width: 100%;
    padding-top: 40px;
    background-image: linear-gradient(rgba(0, 160, 252, .2), #FFFFFF);
}

.cert-content .info h1 {
    font-size: 32px;
}

.cert-content .info .date {
    color: #666;
    background: url(../images/date3.png)no-repeat left center;
    padding-left: 30px;
    margin-top: 20px;
}

.cert-content .info .address {
    color: #666;
    background: url(../images/address.png)no-repeat left center;
    padding-left: 30px;
    margin-top: 10px;
}

.cert-content .info .m-con {
    margin-top: 20px;
}

.cert-content .info .m-con a {
    color: #44916C;
    font-size: 18px;
}

.cert-content .info .money {
    color: #FF583D;
    font-size: 18px;
}

.cert-content .info .money span {
    font-size: 30px;
}

.cert-content .info .m-con button {
    border: 0;
    background-color: #FF583D;
    color: #FFF;
    height: 26px;
    padding: 0 15px;
    border-radius: 10px 0 10px 0;
    -webkit-border-radius: 10px 0 10px 0;
    -moz-border-radius: 10px 0 10px 0;
    -ms-border-radius: 10px 0 10px 0;
    -o-border-radius: 10px 0 10px 0;
    margin-left: 20px;
}

.cert-content .info .tit {
    color: #44916C;
    font-size: 18px;
    margin-top: 100px;
    border-top: 1px #ddd solid;
}

.cert-content .info .tit a {
    padding: 20px;
    margin: 0 50px;
}

.cert-content .info .tit a.on {
    color: #44916C;
}

.cert-content .info .tit a.on::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #44916C;
}

.cert-down {
    padding: 50px 100px;
}

.cert-down .title {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 55px;
}

.cert-down .title span {
    background-color: #C8C8C8;
    line-height: 50px;
    font-size: 18px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #FFF;
    width: 100%;
    margin: 10px 0;
    cursor: pointer;
}

.cert-down .title span.on {
    background-color: #44916C;
}

.cert-down .content img {
    max-width: 100%;
}

.cert-down .down-btn,
.invoice .down-btn,
.class-group .down-btn {
    background-color: #44916C;
    color: #FFF;
    line-height: 48px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    width: 155px;
    margin-top: 20px;
}

.invoice .content {
    background-color: #FFF;
    margin-top: 50px;
}

.invoice .th {
    font-weight: bold;
    font-size: 18px;
    line-height: 75px;
    border-bottom: 1px #ddd solid;
}

.invoice .th>div:first-child,
.invoice .td>div:first-child {
    border-right: 1px #ddd solid;
}

.invoice .td {
    font-size: 18px;
    line-height: 110px;
    border-bottom: 1px #ddd solid;
}

.invoice .td:last-child {
    border-bottom: 0;
}

.invoice .td a {
    margin: 0 30px;
}

.invoice .down-btn {
    margin-top: 60px;
}

.class-group {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F8FAFC;
}

.class-group .text {
    font-size: 18px;
    margin-top: 70px;
}

.class-group .text img {
    margin-right: 10px;
}

.class-group .down-btn {
    margin-top: 40px;
}

.class-group .pic-con .pic {
    background-color: #FFF;
    width: 283px;
}

.class-group .pic-con .pic:last-child {
    margin-left: 50px;
}

.class-group .pic-con .pic img {
    max-width: 100%;
}


/* 多选 */

.checkbox input[type='checkbox'],
.radio input[type='radio'],
.radio1 input[type='radio'],
.radio2 input[type='radio'],
.radio2 input[type='checkbox'] {
    width: 0;
}

.checkbox label,
.radio label,
.radio1 label {
    height: 32px;
    display: block;
    cursor: pointer;
}

.checkbox .check_container,
.radio .check_container {
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    float: left;
    margin-top: 6px;
    position: relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.checkbox input[type='checkbox']:checked+.check_container,
.radio input[type='radio']:checked+.check_container {
    border-color: #44916C;
}

.checkbox input[type='checkbox']:checked+.check_container:before,
.radio input[type='radio']:checked+.check_container:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    border-right: 2px solid #44916C;
    border-bottom: 2px solid #44916C;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    left: 6px;
}

.radio1 .check_container {
    width: 24px;
    height: 24px;
    border: 1px solid #999;
    float: left;
    margin-top: 4px;
    position: relative;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #eee;
    margin-right: 10px;
}

.radio1 .check_container::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #999;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.radio1 input[type='radio']:checked+.check_container {
    border-color: #44916C;
    background-color: #F9FFFC;
}

.radio1 input[type='radio']:checked+.check_container:before {
    background-color: #44916C;
}

.baoming-form {
    background-color: #F8FAFC;
    padding-bottom: 70px;
}

.baoming-form .info {
    width: 100%;
    padding-top: 40px;
    background: #FFF;
    border-top: 1px #eee solid;
    padding-bottom: 70px;
}

.baoming-form .info h1 {
    font-size: 32px;
}

.baoming-form .info .date {
    padding-left: 30px;
    margin-top: 20px;
    font-weight: bold;
}

.baoming-form .info .address {
    color: #666;
    background: url(../images/address.png)no-repeat left center;
    padding-left: 30px;
    margin-top: 10px;
}

.baoming-form .info .m-con {
    margin-top: 20px;
}

.baoming-form .info .m-con a {
    color: #44916C;
    font-size: 18px;
}

.baoming-form .info .money {
    color: #FF583D;
    font-size: 18px;
}

.baoming-form .info .money span {
    font-size: 30px;
}

.baoming-form .info .m-con button {
    border: 0;
    background-color: #FF583D;
    color: #FFF;
    height: 26px;
    padding: 0 15px;
    border-radius: 10px 0 10px 0;
    -webkit-border-radius: 10px 0 10px 0;
    -moz-border-radius: 10px 0 10px 0;
    -ms-border-radius: 10px 0 10px 0;
    -o-border-radius: 10px 0 10px 0;
    margin-left: 20px;
}

.baoming-form .info .time {
    justify-content: flex-end;
    color: #666;
}

.baoming-form .info .time span {
    font-size: 18px;
    color: #EE755D;
}

.baoming-form .group {
    background-color: #FFF;
    margin-top: 30px;
}

.baoming-form .group .title {
    border-bottom: 1px #eee solid;
    font-size: 18px;
    font-weight: bold;
    padding-left: 30px;
    line-height: 58px;
    padding-right: 30px;
}

.baoming-form .group .content {
    padding: 30px;
}

.baoming-form .group .method .radio1 li {
    margin-right: 90px;
}

.baoming-form .information .title span {
    font-weight: normal;
    padding-right: 30px;
    background: url(../images/arrow4.png)no-repeat right center;
}

.baoming-form .information .card {
    width: 300px;
    height: 140px;
    overflow: hidden;
    border: 1px #44916C solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.baoming-form .information .card .del {
    width: 20px;
    background: url(../images/jian.png)no-repeat center;
    margin-right: 10px;
}

.baoming-form .information .card .name {
    font-size: 18px;
    margin-right: 10px;
}

.baoming-form .information .card .tel {
    font-size: 12px;
    color: #999;
}

.baoming-form .information .card .text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 5px;
}

.baoming-form .information .card .text span {
    color: #999;
    margin: 0 10px;
}

.baoming-form .information .add {
    width: 140px;
    height: 140px;
    background-color: #F5F9F7;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.baoming-form .information .add .icon {
    background: url(../images/add.png)no-repeat center;
    width: 20px;
    height: 20px;
}

.baoming-form .information .add .txt {
    font-size: 14px;
    color: #44916C;
}

.baoming-form .hotel .title span {
    font-weight: normal;
    color: #EE755D;
    margin-left: 30px;
    font-size: 14px;
}

.baoming-form .hotel .title .edit {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/edit.png)no-repeat left center;
}

.baoming-form .hotel .title .add {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/add.png)no-repeat left center;
}

.baoming-form .hotel .tit {
    margin-right: 20px;
}

.baoming-form .hotel .tit span {
    color: #EE755D;
}

.baoming-form .hotel .radio1 li {
    margin-right: 100px;
}

.baoming-form .hotel .card-con {
    background-color: #FCFCFC;
    padding: 0 50px;
}

.baoming-form .hotel .card-con .tit1 {
    height: 60px;
    border-bottom: 1px #ddd solid;
}

.baoming-form .hotel .card-con .tit1>div:first-child {
    color: #7E7E7E;
    font-size: 18px;
    font-weight: bold;
}

.baoming-form .hotel .card-con .tit1 a {
    color: #44916C;
    font-size: 14px;
    background-image: linear-gradient(#FFFFFF, #E6E6E6);
    border: 1px #E6E6E6 solid;
    padding: 0 10px;
}

.baoming-form .hotel .card-con .card {
    border-bottom: 1px #ddd solid;
    padding-bottom: 30px;
}

.baoming-form .hotel .card-con .tit {
    text-align: right;
    width: 150px;
}


/* 下拉 */

.select-wrapper {
    font-size: 14px;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 50px;
}

.select-button {
    font-size: 14px;
    width: 100%;
    border: 0;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    padding: 0 26px 0 20px;
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    height: 48px;
}

.select-wrapper .line {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #ddd;
}

.select-down {
    position: absolute;
    top: 20px !important;
    right: 15px;
    height: 0;
    width: 0;
    overflow: hidden;
    font-size: 0;
    border-color: #b5b5b5 transparent transparent transparent;
    border-style: solid;
    border-width: 8px;
}

.select-list {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 3px #ddd;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 48px;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.select-list ul {
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 34px;
    max-height: 400px;
}

.select-list ul li {
    width: auto;
    height: 34px;
    padding-left: 10px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
}

.select-list ul li.selected {
    color: #fff;
    background: #44916C;
}

.baoming-form .hotel {
    padding-bottom: 40px;
}

.baoming-form .hotel .form .con {
    margin-top: 30px;
}

.baoming-form .hotel .form .con .txt {
    font-size: 14px;
    color: #999;
}

.baoming-form .hotel .form .con .select-wrapper {
    width: 300px;
}

.baoming-form .hotel .form .con .time .select-wrapper {
    width: 200px;
}

.baoming-form .hotel .form .con .time .select-list {
    width: 330px;
}

.baoming-form .hotel .form .con .time .select-list ul li.selected {
    color: #44916C;
    background: url(../images/cur.png)no-repeat 96% center;
}

.baoming-form .hotel .form .con .i_box {
    width: 300px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px #ddd solid;
    height: 50px;
    background-color: #FFF;
}

.baoming-form .hotel .form .date {
    height: 48px;
    padding-left: 20px;
    width: 100%;
}

.J_minus,
.J_add {
    width: 40px;
    height: 48px;
    line-height: 48px;
}

.J_minus {
    border-right: 1px #ddd solid;
}

.J_add {
    border-left: 1px #ddd solid;
}

.J_input {
    width: 100%;
}

.baoming-form .submit {
    margin-top: 40px;
}

.baoming-form .submit input,
.baoming-form .submit a {
    height: 48px;
    width: 160px;
    font-size: 18px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    background-color: #eee;
    border: 1px #ddd solid;
    color: #44916C;
}

.baoming-form .submit input[type='submit'],
.baoming-form .submit a {
    background-color: #44916C;
    color: #FFF;
    margin-left: 40px;
}

.baoming-form .invoice .title .edit {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/edit.png)no-repeat left center;
}

.baoming-form .invoice .title .add {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/add.png)no-repeat left center;
}

.baoming-form .invoice .content {
    margin-top: 0;
}

.baoming-form .invoice .radio1 li {
    margin-right: 130px;
}

.baoming-form .invoice .con {
    border-top: 1px #ddd solid;
    background-color: #FCFCFC;
    padding-bottom: 40px;
}

.baoming-form .invoice .text-con {
    margin-top: 20px;
}

.baoming-form .invoice .tit {
    width: 170px;
    text-align: right;
    margin-right: 20px;
    line-height: 50px;
}

.baoming-form .invoice .tit span {
    color: #C01E20;
}

.baoming-form .invoice .text-con .input {
    width: 400px;
    height: 50px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    color: #999;
}

.baoming-form .invoice .text-con .radio li {
    margin-left: 40px;
}

.baoming-form .invoice .text-con textarea {
    width: 820px;
    height: 160px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px 20px;
    color: #999;
}

.baoming-form .invoice .e-con {
    padding: 0 50px 40px 50px;
    background-color: #FFF;
}

.baoming-form .invoice .email {
    padding: 35px 0px;
    border-bottom: 1px #ddd solid;
}

.baoming-form .invoice .email input {
    width: 300px;
    height: 50px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    color: #999;
}

.baoming-form .email-info .title .edit {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/edit.png)no-repeat left center;
}

.baoming-form .email-info .title .add {
    font-weight: normal;
    font-size: 14px;
    color: #44916C;
    cursor: pointer;
    padding-left: 30px;
    background: url(../images/add.png)no-repeat left center;
}

.baoming-form .email-info .content {
    padding-left: 320px;
    padding-right: 320px;
}

.baoming-form .email-info .con {
    margin-bottom: 20px;
}

.baoming-form .email-info .tit {
    line-height: 50px;
    width: 130px;
}

.baoming-form .email-info .tit span {
    color: #FE5E21;
    margin-right: 5px;
}

.baoming-form .email-info .con input[type='text'] {
    width: 100%;
    height: 48px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
}

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
    background: rgba(00, 00, 00, 0.8)
}

.reveal-modal {
    visibility: hidden;
    left: 50% !important;
    top: 50% !important;
    width: 540px;
    position: fixed;
    z-index: 101;
    background-color: #FFF;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    padding-bottom: 20px;
}

.reveal-modal-layer {

    padding-bottom: 20px;
}

.reveal-modal .close-reveal-modal,
.reveal-modal-layer .close-reveal-modal,
.reveal-mingdan .close-reveal-modal,
.reveal-fapiao .close-reveal-modal {
    position: absolute;
    top: 0;
    right: 20px;
    height: 90px;
    cursor: pointer;
    width: 24px;
    background: url(../images/close.png)no-repeat center;
}

.reveal-modal .title,
.reveal-modal-layer .title,
.reveal-mingdan .title,
.reveal-fapiao .title {
    line-height: 90px;
    font-size: 24px;
    font-weight: bold;
}

.reveal-modal .submit,
.reveal-modal-layer .submit  {
    margin-top: 20px;
}

.reveal-modal .submit input,
.reveal-modal-layer .submit input{
    background-color: #44916C;
    color: #FFF;
    font-size: 18px;
    height: 48px;
    width: 400px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.trainees .add {
    background: rgba(68, 145, 108, 0.05);
    height: 60px;
}

.trainees .add::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/add.png)no-repeat center;
    margin-right: 10px;
}

.trainees .radio2 {
    padding-left: 50px;
    padding-right: 30px;
    padding-bottom: 45px;
    border-bottom: 1px #eee solid;
}

.trainees .radio2 li {
    width: 100%;
    border: 1px #44916C solid;
    height: 140px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-top: 20px;
    padding: 20px;
}

.trainees .radio2 label {
    display: block;
    cursor: pointer;
    padding-left: 50px;
}

.trainees .radio2 .check_container {
    width: 24px;
    height: 24px;
    border: 1px solid #999;
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #eee;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.trainees .radio2 .check_container::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #999;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.trainees .radio2 input[type='radio']:checked+.check_container {
    border-color: #44916C;
    background-color: #F9FFFC;
}

.trainees .radio2 input[type='radio']:checked+.check_container:before {
    background-color: #44916C;
}

.trainees .radio2 .check_container1 {
    width: 24px;
    height: 24px;
    border: 1px solid #999;
    position: absolute;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #eee;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.trainees .radio2 input[type='checkbox']:checked+.check_container1 {
    border-color: #44916C;
    background-color: #F9FFFC;
}

.trainees .radio2 input[type='checkbox']:checked+.check_container1:before {
    background-color: #44916C;
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;

    border-right: 2px solid #44916C;
    border-bottom: 2px solid #44916C;
    border-radius: 2px;
    left: 50%;
    /*-webkit-border-radius: 50%;*/
    /*-moz-border-radius: 50%;*/
    /*-ms-border-radius: 50%;*/
    /*-o-border-radius: 50%;*/
    /*background-color: #999;*/
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.trainees .name {
    font-size: 18px;
    margin-right: 10px;
}

.trainees .tel {
    font-size: 12px;
    color: #999;
}

.trainees .text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 5px;
}

.trainees .text span {
    color: #999;
    margin: 0 10px;
}

.trainees .text-con {
    position: absolute;
    left: 60px;
    top: 15px;
}

.trainees .edit {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1001;
    width: 30px;
    height: 30px;
    background: url(../images/edit1.png)no-repeat center;
}

.edit-info .title {
    border-bottom: 1px #eee solid;
}

.edit-info .content {
    padding: 0 50px 45px 50px;
    border-bottom: 1px #eee solid;
}

.edit-info .content .tit {
    width: 90px;
    margin-right: 20px;
    line-height: 50px;
}

.edit-info .content .tit span {
    color: #FE5E21;
    margin-right: 5px;
}

.edit-info .content .group {
    margin-top: 20px;
}

.edit-info .content .group .input {
    width: 100%;
    height: 50px;
    border: 1px #ddd solid;
    padding-left: 20px;
    font-size: 14px;
}

.edit-info .radio1 li {
    margin-right: 50px;
}

.hotel-list {
    border-top: 1px #333 solid;
    margin-left: 30px;
    margin-right: 30px;
}

.hotel-list li {
    border-bottom: 1px #ddd solid;
    padding: 20px;
}

.hotel-list li:last-child {
    border-bottom: 0;
}

.hotel-list li .tit {
    font-size: 14px;
    color: #999;
}

.hotel-list li .item {
    margin-top: 30px;
}

.hotel-list li .item .num {
    background: url(../images/icon2.png)no-repeat left center;
    padding-left: 50px;
    width: 180px;
}

.hotel-list li .item .single{
	background: url(../images/single_room.png)no-repeat left center;
}

.hotel-list li .item .num strong {
    font-size: 24px;
    margin: 0 10px;
    width: 190px;
}

.hotel-list li .item .time {
    width: 350px;
    padding-left: 50px;
}

.hotel-list li .item .text-content {
    border-left: 1px #999 solid;
    border-right: 1px #999 solid;
    padding-left: 50px;
    padding-right: 50px;
}

.hotel-list li .item .date {
    font-size: 14px;
    color: #999;
}

.hotel-list li .item .count {
    font-size: 14px;
    color: #666;
}

.hotel-list li .item .count span::before {
    content: '';
    position: absolute;
    left: -40px;
    height: 1px;
    width: 30px;
    background-color: #eee;
    top: 50%;
}

.hotel-list li .item .date-con {
    white-space: nowrap;
}

.hotel-list li .item .count span::after {
    content: '';
    position: absolute;
    right: -40px;
    height: 1px;
    width: 30px;
    background-color: #eee;
    top: 50%;
}

.invoice-con .tit1,
.email-info-con .tit {
    color: #999;
    text-align: left;
    padding-left: 80px;
    margin-right: 10px;
    width: 240px;
}

.invoice-con .tit1 span,
.email-info-con .tit span {
    color: #FE5E21;
    margin-right: 5px;
}

.invoice-list,
.email-con {
    border-top: 1px #333 solid;
    margin-left: 30px;
    margin-right: 30px;
}

.invoice-list li {
    margin-top: 20px;
}

.invoice-list .txt,
.email-info-con .txt {
    font-size: 14px;
}

.email-con {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.email-info-con {
    padding-left: 90px !important;
    padding-right: 30px !important;
}

.email-info-con .con {
    line-height: 50px;
}

.email-info-con .tit {
    text-align: left;
    padding-left: 0;
		width: 120px;
		/* text-align-last: justify; */
}

.confirm {
    visibility: hidden;
    left: 50% !important;
    top: 50% !important;
    width: 1200px;
    position: fixed;
    z-index: 101;
    background-color: #FFF;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    max-height: 900px;
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
}

.confirm .close-reveal-modal {
   /* position: absolute;
    top: 0;
    right: 20px;*/
    height: 90px;
    cursor: pointer;
    width: 24px;
  /*  background: url(../images/close.png)no-repeat center;*/
}

.confirm .head {
    font-size: 24px;
    font-weight: bold;
    line-height: 90px;
    border-bottom: 1px #ddd solid;
}

.confirm .title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 30px;
}

.confirm .title span {
    font-size: 14px;
    color: #FF583D;
    margin-left: 30px;
    font-weight: normal;
}

.confirm .content {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px #ddd solid;
    padding-bottom: 40px;
}

.confirm .radio1 li {
    margin-right: 100px;
}

.confirm .radio1 li:last-child {
    margin-right: 0;
}

.confirm .hotel .tit {
    width: 140px;
}

.confirm .tit span,
.confirm .invoice .tit1 span {
    color: #FF583D;
    margin-right: 5px;
}

.confirm .hotel .hotel-list,
.confirm .invoice .invoice-list,
.confirm .invoice .email-con {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
}

.confirm .invoice .invoice-list,
.confirm .invoice .email-con {
    padding-left: 90px;
}

.confirm .invoice .invoice-list .tit1 {
    color: #999;
    width: 140px;
}

.confirm .invoice .choice {
    margin-top: 30px;
    padding-left: 90px;
}

.confirm .invoice .tit1 {
    width: 120px;
    color: #999;
}

.confirm .invoice .choice li {
    width: 25%;
    margin-right: 0;
}

.confirm .invoice .email-con .radio1 li {
    width: auto;
    margin-right: 60px;
    white-space: nowrap;
}

.confirm .invoice .email-con .tit1 {
    width: 160px;
}

.confirm .invoice .email-con .txt {
    color: #333333;
    font-size: 14px;
}

.confirm .invoice .email-con .txt span{
	color: #999;
}

.confirm .email-info-con {
    padding-left: 90px;
}

.confirm .email-info-con .con:first-child {
    margin-top: 0;
}

.confirm .submit {
    margin-top: 20px;
}

.confirm .submit input {
    height: 50px;
    color: #FFF;
    font-size: 18px;
    width: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #44916C;
}

.confirm .confirm-info .name {
    font-size: 18px;
    margin-right: 10px;
}

.confirm .confirm-info .tel {
    font-size: 12px;
    color: #999;
}

.confirm .confirm-info .text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 5px;
}

.confirm .confirm-info .text span {
    color: #999;
    margin: 0 10px;
}

.confirm .confirm-info .swiper-slide {
    border-right: 1px #eee solid;
}

.confirm .confirm-info .marks {
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
    width: 180px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    z-index: 1;
}

.confirm .confirm-info .swiper-button-next {
    width: 48px;
    height: 48px;
    background: url(../images/next.png)no-repeat center;
    z-index: 10;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
}

.user-center {
    background-color: #F8FAFC;
    padding-top: 30px;
    padding-bottom: 30px;
}

.sidebar {
    width: 300px;
    background-color: #FFF;
    border: 1px #eee solid;
    margin-right: 20px;
    min-height: 1000px;
}

.sidebar .user-info {
    padding-top: 45px;
}

.sidebar .user-info .avatar {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 1px #F8FAFC solid;
}

.sidebar .user-info .avatar a {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    z-index: 9;
    color: #FFF;
    font-size: 14px;
}

.sidebar .user-info .name {
    font-size: 18px;
    margin-top: 20px;
}

.sidebar .user-info .name .edit {
    position: absolute;
    right: 50px;
    top: 0;
    font-size: 14px;
    background: url(../images/edit2.png)no-repeat left center;
    padding-left: 25px;
    color: #999;
}

.sidebar .user-info .name .edit:hover {
    color: #333;
}

.sidebar .menu {
    margin-top: 40px;
}

.sidebar .menu .item {
    line-height: 54px;
    padding-left: 20px;
    font-size: 18px;
}

.sidebar .menu .item .icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.sidebar .menu .item:nth-child(1) .icon {
    background-image: url(../images/u1.png);
}

.sidebar .menu .item:nth-child(2) .icon {
    background-image: url(../images/u2.png);
}

.sidebar .menu .item:nth-child(3) .icon {
    background-image: url(../images/u3.png);
}

.sidebar .menu .item:nth-child(4) .icon {
    background-image: url(../images/u4.png);
}

.sidebar .menu .item:nth-child(5) .icon {
    background-image: url(../images/u5.png);
}

.sidebar .menu .item.on {
    background-color: #44916C;
    color: #FFF;
}

.sidebar .menu .item:nth-child(1).on .icon {
    background-image: url(../images/u1-on.png);
}

.sidebar .menu .item:nth-child(2).on .icon {
    background-image: url(../images/u2-on.png);
}

.sidebar .menu .item:nth-child(3).on .icon {
    background-image: url(../images/u3-on.png);
}

.sidebar .menu .item:nth-child(4).on .icon {
    background-image: url(../images/u4-on.png);
}

.sidebar .menu .item:nth-child(5).on .icon {
    background-image: url(../images/u5-on.png);
}

.pub-content {
    min-width: 0;
}

.pub-content .content {
    width: 100%;
    border: 1px #eee solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #FFF;
    margin-bottom: 15px;
}

.pub-content .content .title {
    border-bottom: 1px #ddd solid;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.pub-content .content .title span {
    font-size: 18px;
}

.pub-content .content .title .cancel {
    color: #44916C;
    background: url(../images/edit.png)no-repeat left center;
    padding-left: 30px;
    font-size: 14px;
    line-height: 30px;
}


.pub-content .content .title .cancel2 {
    color: #44916C;
    background: url(../images/edit2.png)no-repeat left center;
    padding-left: 30px;
    font-size: 14px;
    line-height: 30px;
}
.pub-content .content .title .add {
    height: 50px;
    line-height: 50px;
    color: #44916C;
    font-size: 18px;
    background: rgba(68, 145, 108, 0.05) url(../images/add.png)no-repeat 20px center;
    padding: 0 20px 0 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.pub-content .content .con {
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
}

.pub-content .content .group {
    margin-top: 20px;
}

.pub-content .content .group .tit {
    line-height: 50px;
    white-space: nowrap;
    margin-right: 20px;
}

.pub-content .content .group .tit span {
    color: #FE5E21;
    margin-right: 5px;
}

.pub-content .content .group .input {
    color: #0b0b0b;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    height: 50px;
    font-size: 14px;
}

.pub-content .content .group .radio1 li {
    margin-right: 60px;
}

.pub-content .content .group .textarea {
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px 20px;
    height: 150px;
    font-size: 14px;
    width: 590px;
}

.id-info .input {
    width: 340px;
}

.fapiao .input,
.mailing-Information .input {
  /*  color: #999;*/
    width: 400px;
}

.fapiao .tit {
    width: 130px;
    text-align: right;
}

.mingdan {
    margin-top: 30px;
}

.mingdan .swiper-slide {
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 10px 15px;
}

.mingdan .s-block {
border:0;
}
.mingdan .name {
    font-size: 18px;
    margin-right: 10px;
}

.mingdan .tel {
    font-size: 12px;
    color: #999;
}

.mingdan .text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 5px;
}

.mingdan .text span {
    color: #999;
    margin: 0 10px;
}

.mingdan .marks,
.fapiao-info .marks {
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;
    width: 220px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    z-index: 1;
}

.mingdan .swiper-button-next,
.fapiao-info .swiper-button-next {
    width: 48px;
    height: 48px;
    background: url(../images/next.png)no-repeat center;
    z-index: 10;
    margin-top: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 20px;
}


.fapiao-info .text-con {
    position: relative;
}

.fapiao-info .text-con .edit,
.mingdan .edit {
    position: absolute;
    right: 0;
    top: 0;
    background: #44916C url(../images/edit3.png)no-repeat center;
    width: 30px;
    height: 30px;
}

.fapiao-info .text-con .del,
.mingdan .del {
    position: absolute;
    width: 14px;
    height: 14px;
    right: 8px;
    bottom: 8px;
    background: url(../images/icon-delete.png) no-repeat center;
    background-size: contain;
    background-color: #ffffff;
    cursor: pointer;
}
.fapiao-info {
    margin-top: 30px;
}

.fapiao-info .swiper-slide {
    width: 540px;
}

.fapiao-info .swiper-slide.s-block {width: 200px;}

.fapiao-info .tit {
    font-size: 18px;
    font-weight: bold;
}

.fapiao-info .text-con {
    border: 1px #999 solid;
    padding: 20px 30px;
    margin-top: 20px;
}

.fapiao-info .text-con .text {
    margin-bottom: 20px;
}

.fapiao-info .text-con .text:last-child {
    margin-bottom: 0;
}

.fapiao-info .text-con .tit1 {
    color: #999;
    width: 120px;
    text-align: right;
    margin-right: 10px;
}

.fapiao-info .text-con .text .txt {
    font-size: 14px;
}

.reveal-mingdan,
.reveal-fapiao {
    visibility: hidden;
    left: 50% !important;
    top: 50% !important;
    width: 700px;
    position: fixed;
    z-index: 101;
    background-color: #FFF;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    padding-bottom: 20px;
}

.reveal-mingdan .title,
.reveal-fapiao .title {
    border-bottom: 1px #ddd solid;
}

.reveal-mingdan .submit input,
.reveal-fapiao .submit input {
    width: 400px;
    height: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #44916C;
    color: #FFF;
    font-size: 18px;
    margin-top: 20px;
}

.reveal-mingdan .con,
.reveal-fapiao .con {
    padding: 0 50px;
    border-bottom: 1px #ddd solid;
    margin-top: 40px;
    padding-bottom: 40px;
}

.reveal-mingdan .group,
.reveal-fapiao .group {
    margin-top: 20px;
}

.reveal-mingdan .group .tit,
.reveal-fapiao .group .tit {
    width: 120px;
    margin-right: 10px;
}

.reveal-mingdan .group .tit span,
.reveal-fapiao .group .tit span {
    color: #EE755D;
}

.reveal-mingdan .group input[type='text'] {
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    font-size: 14px;
    width: 100%;
    height: 50px;
}

.reveal-mingdan .select-wrapper {
    margin-right: 0;
}

.reveal-fapiao .group input[type='text'] {
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    font-size: 14px;
    width: 360px;
    height: 50px;
}

.reveal-fapiao .radio1 li {
    margin-right: 60px;
}

.reveal-fapiao .group .tit {
    text-align: right;
    line-height: 50px;
}

.reveal-fapiao .textarea {
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 15px 20px;
    font-size: 14px;
    width: 360px;
    height: 120px;
}

.reveal-fapiao .checkbox {
    margin-left: 20px;
}

.order-list,
.certificate {
    background-color: #FFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px #eee solid;
    padding-bottom: 40px;
}

.order-list .title,
.certificate .title {
    border-bottom: 1px #ddd solid;
}

.order-list .title span,
.certificate .title span {
    padding-left: 15px;
    padding-right: 15px;
}

.order-list .title span::after,
.certificate .title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 4px;
    background-color: #44916C;
    width: 100%;
}

.submenu,
.submenu a {
    color: #999;
}

.submenu a {
    margin-right: 20px;
    padding-right: 20px;
}

.submenu a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background-color: #eee;
}

.submenu a:last-child {
    margin-right: 0;
    padding-right: 0;
}

.submenu a:last-child::after {
    display: none;
}

.submenu a.on {
    color: #44916C;
}

.order-list ul {
    padding-left: 30px;
    padding-right: 30px;
}

.order-list li {
    margin-top: 20px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.order-list li .tit-con {
    border-bottom: 1px #ddd solid;
    padding-left: 30px;
    padding-right: 10px;
    height: 40px;
    font-size: 14px;
}

.order-list li .tit-con .id {
    background: url(../images/date4.png)no-repeat left center;
    padding-left: 25px;
    margin-right: 20px;
}

.order-list li .tit-con .time {
    color: #999;
}

.order-list li .tit-con .del {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background: #F3F3F3 url(../images/del1.png)no-repeat center;
    cursor: pointer;
}

.order-list li .tit-con .del:hover {
    background-color: #E74C3C;
    background-image: url(../images/del2.png);
}

.order-list li .text-con {
    margin-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.order-list li .tit {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    height: 44px;
}

.order-list li .info {
    width: 175px;
    padding-left: 40px;
    margin-left: 40px;
    border-left: 1px #eee solid;
    border-right: 1px #eee solid;
}

.order-list li .state {
    width: 190px;
}

.order-list li .date,
.order-list li .address {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.order-list li .date {
    margin-top: 10px;
}

.order-list li .money {
    margin-top: 10px;
    color: #FF583D;
}

.order-list li .sum {
    font-size: 20px;
    color: #FF583D;
}

.order-list li .num {
    font-size: 14px;
    margin-top: 5px;
}

.order-list li .success {
    font-weight: bold;
    color: #007CC3;
}

.order-list li .pos {
    color: #44916C;
    font-weight: bold;
}

.order-list li .payment {
    font-weight: bold;
    color: #FF583D;
}

.order-list li .btn {
    height: 36px;
    width: 120px;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    background-color: rgba(68, 145, 108, 0.04);
    border: 1px #44916C solid;
    color: #44916C;
}

.order-list li .btn:last-child {
    margin-top: 15px;
}

.order-list li .txt {
    color: #999;
    font-weight: bold;
}

.certificate .info {
    margin-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
}

.certificate .info input[type='submit'] {
    width: 120px;
    height: 38px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    font-size: 18px;
    color: #FFF;
    background-color: #44916C;
}

.certificate .info .select-wrapper {
    width: 200px;
}

.certificate .info .tit {
    margin-right: 10px;
    color: #666;
}

.certificate .info .date {
    width: 200px;
    height: 50px;
    border: 1px #ddd solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 20px;
    cursor: pointer;
}

.certificate .con {
    padding-left: 30px;
    padding-right: 30px;
}

.certificate .tit1 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 40px;
}

.certificate .item {
    width: 48.5%;
    margin-right: 3%;
    margin-top: 20px;
}

.certificate .item:nth-child(even) {
    margin-right: 0;
}

.certificate .item .pic {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #D9D9D9;
}

.certificate .item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate .item .tit2 {
    font-weight: bold;
    margin-top: 10px;
}

.certificate .item .time {
    font-size: 14px;
    color: #666;
}

.reveal-modal,
.reveal-mingdan,
.reveal-fapiao {
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
}

@media (max-width:1599px) {
	.container{
		width: 80%;
	}
}

@media (max-width:1399px) {
	.container{
		width: 90%;
	}
}

@media (max-width:1199px) {
	.header .head .search{
		width: 270px;
	}
}


.abnormal-box{
	padding-top: 136px;
	font-size: 18px;
	color: #002738;
}
.abnormal-box .abnormal-img{
	width: 200px;
	height: 200px;
	margin-bottom: 10px;
}
.abnormal-box span{
	margin-top: 20px;
	line-height: 1;
}

.nothing-box{
	padding-top: 100px;
	font-size: 18px;
	color: #002738;
}
.nothing-box .nothing-img{
	width: 200px;
	height: 200px;
}
.nothing-box .confirm-btn{
	margin-top: 38px;
	border-radius: 30px;
	background: linear-gradient(to bottom, #17D077,#44916C);
	color: #FFF;
	font-size: 18px;
	width: 120px;
	padding: 4px 0;
	text-align: center;
}


/* 2025-04-28新增 */
.order-list li .tit-con {
    min-height: 40px;
    height: auto;
}
.order-list li .tit-con .del{
    flex-shrink: 0;
}
@media (max-width: 1199px) {
    .container {
        width: 95%;
    }
    .sidebar {
        width: 240px;
    }
    .sidebar .user-info .name {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar .user-info .name .edit {
        position: relative;
        right: unset;
        margin-left: 10px;
    }
    .order-list ul {
        padding-left: 20px;
        padding-right: 20px;
    }
    .order-list li .tit-con {
        padding-left: 15px;
    }
    .order-list li .info {
        width: 140px;
        padding-left: 20px;
        margin-left: 20px;
    }
    .order-list li .state {
        width: 140px;
    }
}