commit d31801431657b48e00f74c4d8ca6e1103fcf0fbe Author: wanyongkang <937888580@qq.com> Date: Wed Oct 7 20:25:03 2020 +0800 初始提交 diff --git a/Host/.config/dotnet-tools.json b/Host/.config/dotnet-tools.json new file mode 100644 index 0000000..98e414c --- /dev/null +++ b/Host/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "3.1.5", + "commands": [ + "dotnet-ef" + ] + } + } +} \ No newline at end of file diff --git a/Host/Areas/m/Controllers/MBaseController.cs b/Host/Areas/m/Controllers/MBaseController.cs new file mode 100644 index 0000000..a84257c --- /dev/null +++ b/Host/Areas/m/Controllers/MBaseController.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; + +namespace Host.Areas.m.Controllers +{ + [AllowAnonymous] + [Area("m")] + [Route("m/[controller]/[action]")] + public abstract class MBaseController : Controller + { + + } +} \ No newline at end of file diff --git a/Host/Areas/m/Controllers/ProjectController.cs b/Host/Areas/m/Controllers/ProjectController.cs new file mode 100644 index 0000000..8f950df --- /dev/null +++ b/Host/Areas/m/Controllers/ProjectController.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; + +namespace Host.Areas.m.Controllers +{ + + public class ProjectController : MBaseController + { + public IActionResult Index() + { + return Content("m/project"); + } + } +} \ No newline at end of file diff --git a/Host/Controllers/ActicleController.cs b/Host/Controllers/ActicleController.cs new file mode 100644 index 0000000..27d31d8 --- /dev/null +++ b/Host/Controllers/ActicleController.cs @@ -0,0 +1,89 @@ +using Hncore.Pass.Vpn.Domain; +using Hncore.Pass.Vpn.Service; +using Home.Models; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Linq.Expressions; +using Hncore.Infrastructure.Extension; +using Hncore.Infrastructure.EntitiesExtension; +using System.Threading.Tasks; +using System.Linq; +using Microsoft.EntityFrameworkCore; + +namespace Home.Controllers +{ + public class ArticleController : MvcBaseController + { + ArticleService m_ArticleServce; + + public ArticleController(ArticleService _ArticleServce) + { + m_ArticleServce = _ArticleServce; + } + + + [HttpGet] + public async Task Index([FromQuery]ArticleSearchModel request) + { + request = request ?? new ArticleSearchModel(); + Expression> exp = m => 1 == 1; + if (request.Catalog > 0) + { + exp = exp.And(m => m.CatalogId == request.Catalog); + } + + if (request.KeyWord.Has()) + { + exp = exp.And(m => m.Title.Contains(request.KeyWord) || m.SubTitle.Contains(request.KeyWord)); + } + + var ret = await m_ArticleServce.Page(request.PageIndex, request.PageSize, exp); + + return View(ret); + } + + + [HttpGet] + public async Task Search([FromQuery]ArticleSearchModel request) + { + request = request ?? new ArticleSearchModel(); + Expression> exp = m => 1 == 1; + if (request.Catalog > 0) + { + exp = exp.And(m => m.CatalogId == request.Catalog); + } + + if (request.KeyWord.Has()) + { + exp = exp.And(m => m.Title.Contains(request.KeyWord) || m.SubTitle.Contains(request.KeyWord)); + } + + var ret = await m_ArticleServce.Page(request.PageIndex, request.PageSize, exp); + + return View(ret); + } + + + [HttpGet] + public async Task Info(int id) + { + var prev = await m_ArticleServce.Query(m => m.Id < id).OrderByDescending(m => m.Id).FirstOrDefaultAsync(); + var ret = await m_ArticleServce.GetById(id); + var next = await m_ArticleServce.Query(m => m.Id > id).OrderBy(m => m.Id).FirstOrDefaultAsync(); + return View(new ArticleInfoMode() + { + + Prev = prev, + Info = ret, + Next = next + }); + } + + [HttpGet] + public IActionResult TaoBao() + { + return View(); + } + + } +} diff --git a/Host/Controllers/HomeController.cs b/Host/Controllers/HomeController.cs new file mode 100644 index 0000000..4679f72 --- /dev/null +++ b/Host/Controllers/HomeController.cs @@ -0,0 +1,50 @@ +using Hncore.Pass.Vpn.Service; +using Home.Models; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System.Diagnostics; +using System.Linq; +using System.Threading.Tasks; +using Hncore.Infrastructure.Extension; +namespace Home.Controllers +{ + + public class HomeController : MvcBaseController + { + ProductService m_ProductService; + + ArticleService m_ArticleService; + ProductOrderService m_ProductOrderService; + + public HomeController(ProductService _ProductService, ArticleService _ArticleService, ProductOrderService _ProductOrderService) + { + m_ProductService = _ProductService; + m_ArticleService = _ArticleService; + m_ProductOrderService = _ProductOrderService; + } + [Route("/")] + public async Task Index() + { + var prodectList=await m_ProductService.Query(m=>m.OnLine==1).ToListAsync(); + var model = prodectList.MapsTo(); + return View(model); + } + [Route("/h")] + public IActionResult Test() + { + return View(); + } + + [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] + public IActionResult Error() + { + return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); + } + + [Route("/Test1")] + public async Task Test1() + { + await m_ProductOrderService.TestProcessOrderAccount(); + } + } +} diff --git a/Host/Controllers/LineListController.cs b/Host/Controllers/LineListController.cs new file mode 100644 index 0000000..762a186 --- /dev/null +++ b/Host/Controllers/LineListController.cs @@ -0,0 +1,106 @@ +using Hncore.Infrastructure.Common; +using Hncore.Infrastructure.EntitiesExtension; +using Hncore.Infrastructure.Extension; +using Hncore.Pass.Vpn.Domain; +using Hncore.Pass.Vpn.Service; +using Home.Models; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Threading.Tasks; + +namespace Home.Controllers +{ + public class LineListController : MvcBaseController + { + + ProductRouteService m_ProductRouteService; + + ProductService m_ProductService; + public LineListController(ProductRouteService _ProductRouteService, ProductService _ProductService) + { + m_ProductRouteService = _ProductRouteService; + m_ProductService = _ProductService; + } + + [HttpGet] + public async Task Index([FromQuery]LineSearchModel request) + { + request = request ?? new LineSearchModel(); + Expression> exp =null; + + if (request.ProductId > 0) + { + exp = m => m.ProductId == request.ProductId; + } + + if (request.KeyWord.Has()) + { + Expression> filterExpr = m => + m.Province.Contains(request.KeyWord) + || m.City.Contains(request.KeyWord) + || m.Name.Contains(request.KeyWord) + || m.ServerUrl.Contains(request.KeyWord); + if (exp == null) + exp = filterExpr; + else exp=exp.And(filterExpr); + } + + var ret = await m_ProductRouteService.Query(exp).OrderBy(m=>m.Sort).ToListAsync(); + + + var products = await m_ProductService.Query(m=>m.OnLine == 1).ToListAsync(); + ViewData["products"] = products; + return View(ret); + } + + [HttpGet] + public async Task Excel([FromQuery]LineSearchModel request) + { + request = request ?? new LineSearchModel(); + Expression> exp = m => 1 == 1; + + if (request.ProductId > 0) + { + exp = exp.And(m => m.ProductId == request.ProductId); + } + + if (request.KeyWord.Has()) + { + exp = exp.Or(m => m.Province.Contains(request.KeyWord)); + exp = exp.Or(m => m.City.Contains(request.KeyWord)); + exp = exp.Or(m => m.Name.Contains(request.KeyWord)); + exp = exp.Or(m => m.KeyWord.Contains(request.KeyWord)); + } + + var ret = await m_ProductRouteService.Query(exp).ToListAsync(); + + var data = new ExcelData + { + SheetName ="线路表", + Data = ret + }; + + var title = new List(){ + new ExcelTitle { Property = "ProductName", Title = "产品" }, + new ExcelTitle { Property = "Province", Title = "省份" }, + new ExcelTitle { Property = "City", Title = "城市" }, + new ExcelTitle { Property = "Name", Title = "运营商" }, + new ExcelTitle { Property = "ServerUrl", Title = "服务器" }, + new ExcelTitle { Property = "BandWidth", Title = "实时带宽" }, + new ExcelTitle { Property = "IpRemark", Title = "IP量" }, + new ExcelTitle { Property = "Status", Title = "状态" }, + }; + var fileBytes = ExcelHelper.ExportListToExcel(data, title); + + var fileName = $"线路表.xlsx"; + Response.Headers.Add("X-Suggested-Filename", fileName.UrlEncode()); + return File(fileBytes, "application/octet-stream", fileName); + + } + + } +} diff --git a/Host/Controllers/MvcBaseController.cs b/Host/Controllers/MvcBaseController.cs new file mode 100644 index 0000000..6428010 --- /dev/null +++ b/Host/Controllers/MvcBaseController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; + +namespace Home.Controllers +{ + [Controller] + [AllowAnonymous] + [Route("[Controller]/[Action]")] + public abstract class MvcBaseController : Controller + { + + } +} diff --git a/Host/Controllers/ProductController.cs b/Host/Controllers/ProductController.cs new file mode 100644 index 0000000..bffaaf0 --- /dev/null +++ b/Host/Controllers/ProductController.cs @@ -0,0 +1,750 @@ +using Alipay.AopSdk.Core; +using Alipay.AopSdk.Core.Domain; +using Alipay.AopSdk.Core.Request; +using Alipay.AopSdk.Core.Util; +using Hncore.Infrastructure.Common; +using Hncore.Infrastructure.Serializer; +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.PaymentCenter.Model; +using Hncore.Pass.PaymentCenter.Pay.WxPay; +using Hncore.Pass.PaymentCenter.WxPay.WechatJsPay; +using Hncore.Pass.Vpn.Domain; +using Hncore.Pass.Vpn.Request.Product; +using Hncore.Pass.Vpn.Response.Product; +using Hncore.Pass.Vpn.Service; +using Home.Models; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using System.Linq; +using Hncore.Infrastructure.Extension; +namespace Home.Controllers +{ + + public class productController : MvcBaseController + { + string Ali_APP_ID =""; + string Ali_APP_PRIVATE_KEY = ""; + string ALIPAY_PUBLIC_KEY = ""; + + string Wx_AppId = ""; + string Wx_MchId = ""; + string Wx_MchKey = ""; + + ProductService m_ProductService; + ProductPackageService m_ProductPackageService; + private ProductOrderService m_ProductOrderService; + private IConfiguration m_Configuration; + private WxPayClient m_WxPayClient; + ProductAccountService m_ProductAccountService; + WxAppUserService m_WxAppUserService; + UserService m_UserService; + ProductUserPriceService m_ProductUserPriceService; + public productController(ProductService _ProductService + , ProductOrderService _ProductOrderService + , ProductPackageService _ProductPackageService + , WxPayClient _WxPayClient + ,ProductAccountService _ProductAccountService + , WxAppUserService _WxAppUserService + ,UserService _UserService + , ProductUserPriceService _ProductUserPriceService + , IConfiguration _Configuration) + { + m_ProductService = _ProductService; + m_ProductOrderService = _ProductOrderService; + m_ProductPackageService = _ProductPackageService; + m_Configuration = _Configuration; + m_WxPayClient = _WxPayClient; + Ali_APP_ID = m_Configuration["Aliyun:Pay:AppId"]; + Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:Pay:PrivateKey"]; + ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"];//支付宝的公钥,而不是应用的公钥 + + Wx_AppId = m_Configuration["WxApps:AppID"]; + Wx_MchId = m_Configuration["WxApps:MchId"]; + Wx_MchKey = m_Configuration["WxApps:MchKey"]; + + m_ProductAccountService = _ProductAccountService; + m_WxAppUserService = _WxAppUserService; + m_UserService = _UserService; + m_ProductUserPriceService = _ProductUserPriceService; + } + + [HttpGet] + public async Task Index() + { + var respList = await m_ProductService.ProductWithPackage(1); + + var userInfo = this.Request.GetUserInfo(); + if (userInfo != null) + { + var userPrices = await m_ProductUserPriceService.GetProductUserPrice(userInfo.UserId); + + foreach(var product in respList) + { + product.Packages.ForEach(m => { + + var userPrice = userPrices.FirstOrDefault(p => p.PackageId == m.Id && p.ProductId == m.ProductId); + if (userPrice != null && userPrice.UserPrice > 0) + { + m.Price = userPrice.UserPrice; + } + }); + } + } + return View(respList); + } + + [HttpPost,UserAuth] + public async Task CreateOrder([FromBody]CreateOrderRequest request) + { + var userId = this.Request.GetUserInfo().UserId; + var ret = await m_ProductOrderService.CreateOrder(request, userId); + + if (ret.Code != ResultCode.C_SUCCESS) + { + return ret; + } + if (ret.Data.OtherPayAmount == 0) + { + await m_ProductOrderService.ProcessOrderAccount(ret.Data); + return new ApiResult("00"); + } + + var data = new OrderPayModel() + { + OrderInfo = ret.Data, + }; + if (ret.Data.PayType == PayType.Wechat) + { + var url = await CreateWxPayOrder(ret.Data); + data.PayData = url; + return new ApiResult(data); + } + else + { + var body = await CreateAliPayOrder(ret.Data); + data.PayData = body; + } + return new ApiResult(data); + } + + + #region 微信支付 + private async Task CreateWxPayOrder(ProductOrderEntity request) + { + string callBackUrl = m_Configuration["NotifyUrl"]; + var mchInfo = new MchInfo() + { + MchId = Wx_MchId, + Key = Wx_MchKey + }; + var createOrderRes = ""; + var pName=request.Accounts.Split(",").FirstOrDefault(); + var oName = $"{request.ProductName}-{request.PackageName}"; + if (pName.Has()) oName = $"{oName}-{pName}"; + if (request.PayChannel == PayChannel.WxPc) + { + var payRequest = new WxScanPayCreateOrderRequest() + { + AppId = Wx_AppId, + Body = oName, + MchId = Wx_MchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.OtherPayAmount * 100), + ProductId = request.ProductId.ToString(), + TimeExpire=DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.ScanPayCreateOrderAsync(payRequest, mchInfo); + } + else if (request.PayChannel == PayChannel.WxH5) + { + var payRequest = new WxH5PayCreateOrderRequest() + { + AppId = Wx_AppId, + Body = oName, + MchId = Wx_MchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.OtherPayAmount * 100), + ProductId = request.ProductId.ToString(), + TimeExpire = DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.H5PayCreateOrderAsync(payRequest, mchInfo); + } + else + { + var wxUserInfo = await m_WxAppUserService.GetWxUser(Wx_AppId, request.UserId); + var payRequest = new WxJsPayCreateOrderRequest() + { + AppId = Wx_AppId, + Body = oName, + MchId = Wx_MchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.OtherPayAmount * 100), + UserOpenId = wxUserInfo.Openid, + TimeExpire = DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.JsPayCreateOrderAsync(payRequest, mchInfo); + } + return createOrderRes; + } + + [HttpPost, AllowAnonymous] + public async Task WxOrderCallBack() + { + try + { + string xml = ""; + LogHelper.Trace("微信支付回调开始", "Notify"); + if (Request.Body.CanSeek) + { + Request.Body.Position = 0; + } + + using (System.IO.StreamReader reader = new System.IO.StreamReader(Request.Body)) + { + xml = reader.ReadToEnd(); + } + + LogHelper.Trace("微信支付回调,原始数据:", $"{xml}"); + + WxPayChecker payData = new WxPayChecker(); + + + payData.FromXmlNoCheckSign(xml); + + if (!payData.IsSet("out_trade_no")) + { + return FailXml(); + } + + // 给支付平台的订单号为支付记录id + string orderId = payData["out_trade_no"]; + + string TransactionId = payData["transaction_id"]; + + var order = await m_ProductOrderService.GetOrderByNo(orderId); + if(order.OrderState== OrderStatus.Complete|| order.OrderState == OrderStatus.PayOk) + return SuccessXml(); + + var queryRet = await m_WxPayClient.OrderQuery(new WxJsPayOrderQueryRequest() + { + AppId = Wx_AppId, + NonceStr = payData.GenerateNonceStr(), + TransactionId = TransactionId + }, new MchInfo() { MchId = Wx_MchId, Key = Wx_MchKey }); + if (!queryRet) return FailXml(); + + + payData.MchKey = Wx_MchKey; + if (!payData.CheckSign()) return FailXml(); + order.OrderState = OrderStatus.PayOk; + order.TradeNo = TransactionId; + order.UpdateTime = DateTime.Now; + await m_ProductOrderService.Update(order); + await m_ProductOrderService.ProcessOrderAccount(order); + } + catch (Exception e) + { + LogHelper.Error("微信支付通知处理失败", e); + + return FailXml(); + } + return SuccessXml(); + } + + public string FailXml() + { + return "FAIL "; + } + + private string SuccessXml() + { + return "SUCCESS "; + } + + #endregion + + + #region 阿里支付 + private async Task CreateAliPayOrder(ProductOrderEntity request) + { + string callBackUrl = m_Configuration["Aliyun:Pay:NotifyUrl"]; + string ReturnUrl = m_Configuration["Aliyun:Pay:ReturnUrl"]; + + var pName = request.Accounts.Split(",").FirstOrDefault(); + var oName = $"{request.ProductName}-{request.PackageName}"; + if (pName.Has()) oName = $"{oName}-{pName}"; + if (request.PayChannel == PayChannel.AliPc) + { + // 组装业务参数model + AlipayTradePagePayModel model = new AlipayTradePagePayModel + { + Body = request.PackageName, + Subject = oName, + TotalAmount = request.OtherPayAmount.ToString(), + OutTradeNo = request.OrderNo, + ProductCode = "FAST_INSTANT_TRADE_PAY",//QUICK_WAP_PAY + TimeoutExpress="15m" + }; + + AlipayTradePagePayRequest aliRequest = new AlipayTradePagePayRequest(); + // 设置同步回调地址 + aliRequest.SetReturnUrl(ReturnUrl); + // 设置异步通知接收地址 + aliRequest.SetNotifyUrl(callBackUrl); + // 将业务model载入到request + aliRequest.SetBizModel(model); + + var _aopClient = new DefaultAopClient("https://openapi.alipay.com/gateway.do", Ali_APP_ID, Ali_APP_PRIVATE_KEY); + + var response = await _aopClient.PageExecuteAsync(aliRequest); + + return response.Body; + + } + else if (request.PayChannel == PayChannel.AliH5) + { + Ali_APP_ID = m_Configuration["Aliyun:PayH5:AppId"]; + Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:PayH5:PrivateKey"]; + ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + + callBackUrl = m_Configuration["Aliyun:PayH5:NotifyUrl"]; + ReturnUrl = m_Configuration["Aliyun:PayH5:ReturnUrl"]; + + // 组装业务参数model + AlipayTradeWapPayModel model = new AlipayTradeWapPayModel + { + Body = request.PackageName, + Subject = oName, + TotalAmount = request.OtherPayAmount.ToString(), + OutTradeNo = request.OrderNo, + ProductCode = "QUICK_WAP_PAY", + QuitUrl =this.Request.GetUrl(), + TimeoutExpress = "15m" + }; + + AlipayTradeWapPayRequest aliRequest = new AlipayTradeWapPayRequest(); + // 设置同步回调地址 + aliRequest.SetReturnUrl(ReturnUrl); + // 设置异步通知接收地址 + aliRequest.SetNotifyUrl(callBackUrl); + // 将业务model载入到request + aliRequest.SetBizModel(model); + + var _aopClient = new DefaultAopClient("https://openapi.alipay.com/gateway.do", Ali_APP_ID, Ali_APP_PRIVATE_KEY); + + var response = await _aopClient.PageExecuteAsync(aliRequest); + + return response.Body; + } + return ""; + } + + /// + /// 支付同步回调 + /// + [HttpGet, AllowAnonymous] + public IActionResult AliReturn() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + + + Dictionary sArray = GetRequestGet(); + if (sArray.Count != 0) + { + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + var ordereNo = sArray["out_trade_no"]; + // var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + Console.WriteLine($"同步验证通过,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证通过"; + } + else + { + Console.WriteLine($"同步验证失败,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证失败"; + } + } + return Redirect("~/User/MyAccounts"); + } + + [HttpPost, AllowAnonymous] + public async Task AliNotify() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + Dictionary sArray = GetRequestPost(); + + LogHelper.Info("AliNotify", AlipaySignature.GetSignContent(sArray)); + if (sArray.Count != 0) + { + // bool flag = AlipaySignature.RSA2Check(sArray, ALIPAY_PUBLIC_KEY); + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + //交易状态 + //判断该笔订单是否在商户网站中已经做过处理 + //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序 + //请务必判断请求时的total_amount与通知时获取的total_fee为一致的 + //如果有做过处理,不执行商户的业务程序 + + //注意: + //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知 + try + { + var ordereNo = sArray["out_trade_no"]; + var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + if (order.OrderState == OrderStatus.Complete|| order.OrderState == OrderStatus.PayOk) + { + await Response.WriteAsync("success"); + return; + } + + order.OrderState = OrderStatus.PayOk; + order.TradeNo = sArray["trade_no"]; + order.UpdateTime = DateTime.Now; + await m_ProductOrderService.Update(order); + await m_ProductOrderService.ProcessOrderAccount(order); + + Console.WriteLine(Request.Form["trade_status"]); + + await Response.WriteAsync("success"); + }catch(Exception ex) + { + LogHelper.Error("AliNotify.Exception", ex.Message); + await Response.WriteAsync("fail"); + } + + } + else + { + LogHelper.Error("AliNotify.Error", "签名校验失败"); + await Response.WriteAsync("fail"); + } + } + } + + + /// + /// 支付同步回调 + /// + [HttpGet, AllowAnonymous] + public IActionResult AliReturnH5() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + + + Dictionary sArray = GetRequestGet(); + if (sArray.Count != 0) + { + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + var ordereNo = sArray["out_trade_no"]; + // var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + Console.WriteLine($"同步验证通过,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证通过"; + } + else + { + Console.WriteLine($"同步验证失败,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证失败"; + } + } + return Redirect("~/User/MyAccounts"); + } + + [HttpPost, AllowAnonymous] + public async Task AliNotifyH5() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + Dictionary sArray = GetRequestPost(); + LogHelper.Info("AliNotify", AlipaySignature.GetSignContent(sArray)); + if (sArray.Count != 0) + { + // bool flag = AlipaySignature.RSA2Check(sArray, ALIPAY_PUBLIC_KEY); + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + //交易状态 + //判断该笔订单是否在商户网站中已经做过处理 + //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序 + //请务必判断请求时的total_amount与通知时获取的total_fee为一致的 + //如果有做过处理,不执行商户的业务程序 + + //注意: + //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知 + try + { + var ordereNo = sArray["out_trade_no"]; + var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + if (order.OrderState == OrderStatus.Complete || order.OrderState == OrderStatus.PayOk) + { + await Response.WriteAsync("success"); + return; + } + + + order.OrderState = OrderStatus.PayOk; + order.TradeNo = sArray["trade_no"]; + order.UpdateTime = DateTime.Now; + await m_ProductOrderService.Update(order); + await m_ProductOrderService.ProcessOrderAccount(order); + + Console.WriteLine(Request.Form["trade_status"]); + + await Response.WriteAsync("success"); + } + catch (Exception ex) + { + LogHelper.Error("AliNotify.Exception", ex.Message); + await Response.WriteAsync("fail"); + } + + } + else + { + LogHelper.Error("AliNotify.Error", "签名校验失败"); + await Response.WriteAsync("fail"); + } + } + } + + + + + private Dictionary GetRequestGet() + { + Dictionary sArray = new Dictionary(); + + ICollection requestItem = Request.Query.Keys; + foreach (var item in requestItem) + { + sArray.Add(item, Request.Query[item]); + + } + return sArray; + + } + + + private Dictionary GetRequestPost() + { + Dictionary sArray = new Dictionary(); + + ICollection requestItem = Request.Form.Keys; + foreach (var item in requestItem) + { + sArray.Add(item, Request.Form[item]); + + } + return sArray; + + } + + #endregion + + + + //[HttpGet] + //public async Task Success() + //{ + // return Content("Success"); + //} + + //[HttpGet] + //public async Task ErrorInfo() + //{ + // return Content("Error"); + //} + + [HttpGet, UserAuth] + public async Task TestIndex(int id) + { + var userId = this.Request.GetUserInfo().UserId; + var product = await m_ProductService.GetById(id); + var package = await m_ProductPackageService.Query(m => m.IsTest == 1 && m.ProductId == id).FirstOrDefaultAsync(); + var restTimes = await m_ProductAccountService.GetRestTestCount(userId); + + return View("Test", new PackageInfoResponse() + { + Package = package, + Product = product, + RestTimes = restTimes + }); + } + + + [HttpGet, UserAuth] + public async Task Test(int id) + { + var product = await m_ProductService.GetById(id); + var package = await m_ProductPackageService.Query(m => m.IsTest == 1 && m.ProductId == id).FirstOrDefaultAsync(); + var restTimes = 0; + var userInfo = this.Request.GetUserInfo(); + if (userInfo != null) + { + var userId = userInfo.UserId; + restTimes = await m_ProductAccountService.GetRestTestCount(userId); + } + return View("Test", new PackageInfoResponse() + { + Package = package, + Product = product, + RestTimes = restTimes + }); + } + + + [HttpGet] + public async Task Soft() + { + var ret = await m_ProductService.Query(true).ToListAsync(); + return View(ret); + } + + [HttpGet, AllowAnonymous] + public async Task IsPay(string orderNo) + { + var orderInfo=await m_ProductOrderService.GetOrderByNo(orderNo); + if (orderInfo.OrderState == OrderStatus.PayOk || orderInfo.OrderState == OrderStatus.Complete) + return new ApiResult(1); + else + return new ApiResult(0); + } + + [HttpGet,UserAuth] + public async Task Buy(int id) + { + var userId = this.Request.GetUserInfo().UserId; + var package = await m_ProductPackageService.GetById(id); + var product = await m_ProductService.GetById(package.ProductId); + + var userPrice = await m_ProductUserPriceService.GetPackageUserPrice(package.Id, userId); + if (userPrice != null && userPrice.UserPrice > 0) + { + package.Price = userPrice.UserPrice; + } + + return View("buy", new PackageInfoResponse() + { + + Package = package, + Product = product + }); + } + + [HttpGet] + public async Task ReBuyIndex(string accounts,int productId=0) + { + ViewBag.accounts = ""; + ViewBag.errorTip = ""; + var model = new ProductWithPackageResponse(); + if (accounts.NotHas()) + { + ViewBag.errorTip = "请选择账号"; + return View(model); + } + var accountList = await m_ProductAccountService.GetAccounts(accounts); + + if (productId > 0) + accountList = accountList.Where(m => m.ProductId == productId).ToList(); + var productIds = accountList.Select(m => m.ProductId); + var connectCountList = accountList.Select(m => m.ConnectCount); + if (productIds.Distinct().Count() != 1 || connectCountList.Distinct().Count() != 1) + { + ViewBag.errorTip = "续费账号必须为同一种产品且相同的连接数"; + return View(model); + } + ViewBag.accounts = accounts; + var id = productIds.First().Value; + var respList = await m_ProductService.GetOneProductWithPackage(id); + + var userInfo = this.Request.GetUserInfo(); + if (userInfo != null) + { + var userPrices = await m_ProductUserPriceService.GetProductUserPrice(id, userInfo.UserId); + respList.Packages.ForEach(m => + { + var userPrice = userPrices.FirstOrDefault(p => p.PackageId == m.Id); + if (userPrice != null && userPrice.UserPrice > 0) + { + m.Price = userPrice.UserPrice; + } + }); + } + return View(respList); + } + + [HttpGet,UserAuth] + public async Task ReBuy(int packageId, string accounts) + { + var package = await m_ProductPackageService.GetById(packageId); + var product = await m_ProductService.GetById(package.ProductId); + + var account = ""; + if (accounts.IndexOf(",") == -1) + { + account = accounts; + } + else + { + account = accounts.Split(',')[0]; + } + var accountEntity = await m_ProductAccountService.GetProductAccountInfo(package.ProductId, account); + + var userId = this.Request.GetUserInfo().UserId; + var userPrice = await m_ProductUserPriceService.GetPackageUserPrice(packageId, userId); + if (userPrice != null && userPrice.UserPrice > 0) + { + package.Price = userPrice.UserPrice; + } + + var model = new PackageInfoResponse() + { + Package = package, + Product = product + }; + ViewBag.accounts = accounts; + ViewBag.orderType = accounts.Split(",").Count() > 1 ? 4 : 3; + ViewBag.ConnectCount = accountEntity == null ? 1 : accountEntity.ConnectCount; + return View(model); + } + } +} diff --git a/Host/Controllers/UserController.cs b/Host/Controllers/UserController.cs new file mode 100644 index 0000000..f6c3006 --- /dev/null +++ b/Host/Controllers/UserController.cs @@ -0,0 +1,1253 @@ +using Alipay.AopSdk.Core; +using Alipay.AopSdk.Core.Domain; +using Alipay.AopSdk.Core.Request; +using Alipay.AopSdk.Core.Util; +using HHncore.Pass.Vpn.Request.Product; +using Hncore.Infrastructure.AliYun; +using Hncore.Infrastructure.Common; +using Hncore.Infrastructure.EntitiesExtension; +using Hncore.Infrastructure.Extension; +using Hncore.Infrastructure.Serializer; +using Hncore.Infrastructure.SMS; +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.BaseInfo.Models; +using Hncore.Pass.BaseInfo.Request; +using Hncore.Pass.BaseInfo.Request.User; +using Hncore.Pass.PaymentCenter.Model; +using Hncore.Pass.PaymentCenter.Pay.WxPay; +using Hncore.Pass.PaymentCenter.WxPay.WechatJsPay; +using Hncore.Pass.Sells.Domain; +using Hncore.Pass.Sells.Service; +using Hncore.Pass.Vpn.Domain; +using Hncore.Pass.Vpn.Service; +using Hncore.Wx.Open; +using Home.Models; +using Host.Models; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Threading.Tasks; +using UserService = Hncore.Pass.BaseInfo.Service.UserService; +using WxAppUserService = Hncore.Pass.BaseInfo.Service.WxAppUserService; +namespace Home.Controllers +{ + [Controller] + [Route("[Controller]/[Action]")] + public class UserController:Controller + { + UserService m_UserService; + ProductAccountService m_ProductAccountService; + AliDayu m_AliDayu; + ArticleService m_ArticleService; + ProductOrderService m_OrderService; + Hncore.Pass.BaseInfo.Service.UserScoreService m_UserScoreService; + private AgentService m_AgentService; + ProductPackageService m_PackageService; + ProductService m_ProductService; + CouponService m_CouponService; + Hncore.Pass.BaseInfo.Service.UserScoreService m_ScoreService; + SellerTaoBaoService m_TaoBaoService; + WxAppUserService m_WxAppUserService; + IConfiguration m_Configuration; + UserChargeOrderService m_ChargeService; + WxPayClient m_WxPayClient; + private AgentService m_agentService; + CouponUserOrginService m_CouponUserOrginService; + public UserController(UserService _UserService + , AliDayu _AliDayu + , ProductAccountService _ProductAccountService + , ArticleService _ArticleService + , ProductOrderService _OrderService + , Hncore.Pass.BaseInfo.Service.UserScoreService _UserScoreService + , AgentService _AgentService + , ProductPackageService _PackageService + ,ProductService _ProductService + , CouponService _CouponService + , SellerTaoBaoService _TaoBaoService + , Hncore.Pass.BaseInfo.Service.UserScoreService _ScoreService + , WxAppUserService _WxAppUserService + , UserChargeOrderService _ChargeService + , IConfiguration _Configuration + ,WxPayClient _WxPayClient + , AgentService _agentService + , CouponUserOrginService _CouponUserOrginService) + { + m_UserService = _UserService; + m_AliDayu = _AliDayu; + m_ProductAccountService = _ProductAccountService; + m_ArticleService = _ArticleService; + m_OrderService = _OrderService; + m_UserScoreService = _UserScoreService; + m_AgentService = _AgentService; + m_PackageService = _PackageService; + m_CouponService = _CouponService; + m_TaoBaoService = _TaoBaoService; + m_ScoreService = _ScoreService; + m_ProductService = _ProductService; + m_WxAppUserService = _WxAppUserService; + m_Configuration = _Configuration; + m_ChargeService = _ChargeService; + m_WxPayClient = _WxPayClient; + m_agentService = _agentService; + m_CouponUserOrginService = _CouponUserOrginService; + } + [UserAuth] + public async Task Index() + { + var userId = this.Request.GetUserInfo().UserId; + var model = new UserHomeModel(); + model.UserModel = await m_UserService.GetById(userId); + + var accountQuery = m_ProductAccountService.Query(m => m.UserId == userId); + model.AccountModel.TotalCount = await accountQuery.CountAsync(); + model.AccountModel.ExpriedCount = await accountQuery.Where(m => m.EndTime < DateTime.Now).CountAsync(); + + var orderQuery= m_OrderService.Query(m => m.UserId == userId); + + var todayOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0); + model.Statistic.TodayExpend = todayOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + model.Statistic.TodayRefund = todayOrderQuery.Where(m =>(m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount); + + + var monthOrderQuery = orderQuery.Where(m =>m.CreateTime.Month== DateTime.Now.Month); + model.Statistic.MonthExpend = monthOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + model.Statistic.MonthRefund = monthOrderQuery.Where(m =>(m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount); + + var yearOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0); + model.Statistic.YearExpend= yearOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + + + var chargeQuery = m_UserScoreService.Query(m => m.UserId == userId); + model.Statistic.TodayCharege = chargeQuery.Where(m =>(m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && (m.CreateTime - DateTime.Now).Days == 0).Sum(m => m.ScoreValue); + model.Statistic.MonthCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && m.CreateTime.Month==DateTime.Now.Year).Sum(m => m.ScoreValue); + + + model.TopNewsModel = await m_ArticleService.GetTop(6, Hncore.Pass.Vpn.Domain.ArticleCatalog.Top); + + return View(model); + } + + [UserAuth] + public async Task IndexInfo() + { + var userId = this.Request.GetUserInfo().UserId; + var model = new UserHomeModel(); + model.UserModel = await m_UserService.GetById(userId); + + var accountQuery = m_ProductAccountService.Query(m => m.UserId == userId); + model.AccountModel.TotalCount = await accountQuery.CountAsync(); + model.AccountModel.ExpriedCount = await accountQuery.Where(m => m.EndTime < DateTime.Now).CountAsync(); + + var orderQuery = m_OrderService.Query(m => m.UserId == userId); + + var todayOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0); + model.Statistic.TodayExpend = todayOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + model.Statistic.TodayRefund = todayOrderQuery.Where(m => (m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount); + + + var monthOrderQuery = orderQuery.Where(m => m.CreateTime.Month == DateTime.Now.Month); + model.Statistic.MonthExpend = monthOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + model.Statistic.MonthRefund = monthOrderQuery.Where(m => (m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount); + + var yearOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0); + model.Statistic.YearExpend = yearOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount); + + + var chargeQuery = m_UserScoreService.Query(m => m.UserId == userId); + model.Statistic.TodayCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && (m.CreateTime - DateTime.Now).Days == 0).Sum(m => m.ScoreValue); + model.Statistic.MonthCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && m.CreateTime.Month == DateTime.Now.Year).Sum(m => m.ScoreValue); + + + model.TopNewsModel = await m_ArticleService.GetTop(6, Hncore.Pass.Vpn.Domain.ArticleCatalog.Top); + + return View(model); + } + + /// + /// 登录 + /// + /// + /// + [HttpPost, AllowAnonymous] + public async Task Login([FromBody] LoginRequest request) + { + var user = await m_UserService.Login(request); + + var appId = m_Configuration["WxApps:AppId"]; + var wxUser = await m_WxAppUserService.GetWxUser(appId, user.User.Id); + if (wxUser != null) + user.User.OpenId = wxUser.Openid; + this.HttpContext.Response.Cookies.Append("token", user.Token); + this.HttpContext.Response.Cookies.Append("userInfo", user.User.ToJson()); + return new ApiResult(user); + } + /// + /// 登录 + /// + /// + /// + [HttpGet, AllowAnonymous] + public async Task LoginOut() + { + this.HttpContext.Response.Cookies.Delete("token"); + this.HttpContext.Response.Cookies.Delete("userInfo"); + return Redirect("/"); + } + + /// + /// 手机验证码登录 + /// + /// + /// + [HttpPost, AllowAnonymous] + public async Task PhoneLogin([FromBody] PhoneModel request) + { + var key = $"User_Login:{request.Phone}"; + var code = await RedisHelper.GetAsync(key); + if (request.Code != code) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "验证码不正确或者过期"); + } + var userEntity = m_UserService.Query(m => m.Phone == request.Phone || m.LoginCode == request.Phone).FirstOrDefault(); + if (userEntity == null) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "用户不存在"); + } + var user = await m_UserService.Login(new LoginRequest() + { + Logincode = userEntity.LoginCode, + Password = userEntity.Password + }); + this.HttpContext.Response.Cookies.Append("token", user.Token); + this.HttpContext.Response.Cookies.Append("userInfo", user.User.ToJson()); + return new ApiResult(user); + } + + /// + /// 注册 + /// + /// + /// + [HttpGet, AllowAnonymous] + public IActionResult Regist() + { + return View(); + } + + /// + /// 注册 + /// + /// + /// + [HttpPost, AllowAnonymous] + public async Task Regist([FromBody] PhoneModel request) + { + var key = $"User_Code:{request.Phone}"; + + if (request.Phone.NotHas()) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "手机号不能为空"); + } + + var code = await RedisHelper.GetAsync(key); + if (request.Code != code) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "验证码不正确或者过期"); + } + var userEntity = new User() + { + CreateType = UserCreateType.UserRegist, + LoginCode = request.Phone, + Password = request.Pwd, + Phone = request.Phone, + Wx=request.Wx, + QQ=request.QQ + }; + + var ret = await m_UserService.Regist(userEntity); + if (ret.Code != ResultCode.C_SUCCESS) return ret; + var userLogin = await m_UserService.Login(new LoginRequest() + { + Logincode = request.Phone, + Password = request.Pwd + }); + this.HttpContext.Response.Cookies.Append("token", userLogin.Token); + this.HttpContext.Response.Cookies.Append("userInfo", userLogin.User.ToJson()); + return new ApiResult(userLogin); + } + + /// + /// 找回密码 + /// + /// + /// + [HttpGet, AllowAnonymous] + public IActionResult FindPwd() + { + return View(); + } + + + /// + /// 找回密码 + /// + /// + /// + [HttpPost, AllowAnonymous] + public async Task FindPwd([FromBody] PhoneModel request) + { + var key = $"FindUser_Code:{request.Phone}"; + + if (request.Phone.NotHas()) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "手机号不能为空"); + } + + var code = await RedisHelper.GetAsync(key); + if (request.Code != code) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "验证码不正确或者过期"); + } + var user = await m_UserService.GetByPhone(request.Phone); + if (user==null) return new ApiResult(ResultCode.C_Access_Forbidden, "手机号不存在"); + return await m_UserService.UpdatePwd(user, request.Pwd); + + } + + + /// + /// 发送手机验证码 + /// + /// + /// + [HttpGet, AllowAnonymous] + public async Task SendPhoneCode(string phone,string key) + { + key = $"{key}:{phone}"; + + if (key.StartsWith("User_Code:") &&m_UserService.Exist(m => m.LoginCode == phone || m.Phone == phone)) + { + return new ApiResult(ResultCode.C_ALREADY_EXISTS_ERROR, "该手机号已经注册了"); + } + + + var code = await RedisHelper.GetAsync(key); + if (code.Has()) + { + return new ApiResult(ResultCode.C_Access_Forbidden, "请稍后再试"); + } + code = ValidateCodeHelper.MakeNumCode(4); + await RedisHelper.SetAsync(key, code, 60); + var ret = AliSmsService.Send( "SMS_186355045", new { code }, "聚IP商城", phone); + if (ret) + { + return new ApiResult(ResultCode.C_SUCCESS, "验证码已发送到您的手机"); + } + return new ApiResult(ResultCode.C_UNKNOWN_ERROR, "验证码已发失败"); + } + + [HttpPost, UserAuth] + public async Task OrginAccountAuth([FromBody]OriginAccountAuthRequest request) + { + var user = this.Request.GetUserInfo(); + + List accounts = new List(); + + if (request.StartNum > 0 && request.Count > 0) + { + var end = request.StartNum + request.Count; + for (var i = request.StartNum; i < end; i++) + { + var account = $"{ request.Account}{i}"; + // if (!m_ProductAccountService.Exist(m => m.Account == account))//m.ProductId == request.ProductId && + accounts.Add(account); + } + } + else + { + //if (m_ProductAccountService.Exist(m => m.Account == request.Account))//m.ProductId == request.ProductId && + // return new ApiResult(ResultCode.C_ALREADY_EXISTS_ERROR, "该账号已经存在了"); + + accounts.Add(request.Account); + } + + List error = new List(); + foreach (var accountItem in accounts) + { + if (m_ProductAccountService.Exist(m =>m.ProductId== request.ProductId&& m.Account == accountItem)) + { + error.Add($"[{accountItem}]已存在"); + continue; + } + var originModel = await m_AgentService.GetOriginAccountInfo(request.ProductId, accountItem, request.Pwd); + if (originModel.Code != ResultCode.C_SUCCESS) + { + + error.Add($"[{accountItem}]{originModel.Message}"); + continue; + } + var package = await m_PackageService.Query(m => m.ProductId == request.ProductId && m.OriginName == originModel.Data.Package).FirstOrDefaultAsync(); + var product = await m_ProductService.GetById(request.ProductId); + await m_ProductAccountService.Add(new ProductAccountEntity() + { + Account = accountItem, + AccountType = (int)Hncore.Pass.Vpn.Domain.AccountType.Origin, + PackageId = package == null ? 0 : package.Id, + ChargeStatus = AccountChargeStatus.Normal, + ConnectCount = Convert.ToInt32(originModel.Data.ConnectCount), + EndTime = originModel.Data.RealEndTime, + PackageName = package == null ? originModel.Data.Package : package.Name, + ProductId = product.Id, + ProductName = product.Name, + Pwd = originModel.Data.Pwd, + StartTime = DateTime.Parse(originModel.Data.RegistTime), + Remark = "原系统认证", + UserId = user.UserId, + UserCode = user.LoginName, + }); + } + if (error.Count > 0) + { + return new ApiResult(ResultCode.C_IGNORE_ERROR, string.Join("\n", error)); + } + return new ApiResult(1); + } + + [HttpGet] + [UserAuth] + public async Task MyOrders([FromQuery]OrderSearchModel request) + { + var userId = this.Request.GetUserInfo().UserId; + + var orderQuery = m_OrderService.Query(m => m.UserId == userId); + orderQuery = orderQuery.Where(m => m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete); + if (request.OrderType > 0) + { + orderQuery = orderQuery.Where(m => (int)m.OrderType == request.OrderType); + } + if (request.ProductId > 0) + { + orderQuery = orderQuery.Where(m => m.ProductId == request.ProductId); + } + + if (request.PackageId > 0) + { + orderQuery = orderQuery.Where(m => m.PackageId == request.PackageId); + } + + if (request.ETime.HasValue && request.BTime.HasValue) + { + orderQuery = orderQuery.Where(m => m.CreateTime >= request.BTime && m.CreateTime <= request.ETime); + } + + if (request.KeyWord.Has()) + { + orderQuery = orderQuery.Where(m =>m.OrderNo.Contains(request.KeyWord)||m.Accounts.Contains(request.KeyWord)); + } + var data =await orderQuery.OrderByDescending(m => m.Id).ListPagerAsync(request.PageSize, request.PageIndex, true); + return View(data); + } + + [HttpGet] + [UserAuth] + public async Task MyRefundOrders([FromQuery]OrderSearchModel request) + { + var userId = this.Request.GetUserInfo().UserId; + + var orderQuery = m_OrderService.Query(m => m.UserId == userId); + orderQuery = orderQuery.Where(m => m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver || m.OrderState == OrderStatus.RequestRefund); + if (request.OrderType > 0) + { + orderQuery = orderQuery.Where(m => (int)m.OrderType == request.OrderType); + } + if (request.ProductId > 0) + { + orderQuery = orderQuery.Where(m => m.ProductId == request.ProductId); + } + + if (request.PackageId > 0) + { + orderQuery = orderQuery.Where(m => m.PackageId == request.PackageId); + } + + if (request.ETime.HasValue && request.BTime.HasValue) + { + orderQuery = orderQuery.Where(m => m.CreateTime >= request.BTime && m.CreateTime <= request.ETime); + } + + if (request.KeyWord.Has()) + { + orderQuery = orderQuery.Where(m => m.OrderNo.Contains(request.KeyWord) || m.Accounts.Contains(request.KeyWord)); + } + var data = await orderQuery.OrderByDescending(m => m.Id).ListPagerAsync(request.PageSize, request.PageIndex, true); + return View(data); + } + + + [HttpGet] + [UserAuth] + public async Task MyAccounts([FromQuery]AccountSearchModel request=null ) + { + request = request ?? new AccountSearchModel(); + var userId = this.Request.GetUserInfo().UserId; + + Expression> exp = m => m.UserId == userId; + + if (request.ProductId > 0) + { + exp = exp.And(m => m.ProductId == request.ProductId); + } + + if (request.PackageId > 0) + { + exp = exp.And(m => m.PackageId == request.PackageId); + } + + if (request.ExpiredDay > -1) + { + exp = exp.And(m => Math.Ceiling((m.EndTime - DateTime.Now).Value.TotalDays) == request.ExpiredDay); + } + + if (request.ETime.HasValue && request.BTime.HasValue) + { + exp = exp.And(m => m.EndTime >= request.BTime && m.EndTime <= request.ETime); + } + + if (request.KeyWord.Has()) + { + exp = exp.And(m => m.Account.Contains(request.KeyWord)); + } + + //var ret = await m_ProductAccountService.PageDesc(request.PageIndex,request.PageSize, exp,true,m=>m.Id); + var ret = await m_ProductAccountService.Query(exp, true).OrderByDescending(m=>m.Id).ToListAsync(); + return View(ret); + } + + [HttpGet] + [UserAuth] + public async Task MyCoupons() + { + var userId =this.Request.GetUserInfo().UserId; + var model = await m_CouponService.GetUserCoupon(userId); + return View(model); + } + + /// + /// 发送手机验证码 + /// + /// + /// + [HttpGet, AllowAnonymous] + public IActionResult WebLogin(string redirect="") + { + ViewBag.redirect = redirect; + return View("Login"); + } + + /// + /// 淘宝订单 + /// + /// + /// + [HttpPost, AllowAnonymous] + public async Task TaoBao() + { + Func> process = async (data) => + { + var notifyOrder = data.FromJsonTo(); + + LogHelper.Info("TaoBao process"); + if (notifyOrder == null || notifyOrder.Tid.NotHas()) + return false; + + if (m_ScoreService.ExistTaoBaoScore(notifyOrder.Tid)) + return true; + + var phone = notifyOrder.ReceiverMobile.NotHas() ? notifyOrder.ReceiverPhone : notifyOrder.ReceiverMobile; + if (phone.NotHas()) return false; + + var userEntity = await m_UserService.Query(m => m.Phone == phone).FirstOrDefaultAsync(); + + if (userEntity == null) + { + userEntity = new User() + { + CreateType = UserCreateType.TaoBaoRegist, + LoginCode = phone, + Password = "1234", + Phone = phone, + TaoBao= notifyOrder.BuyerNick + }; + var ret = await m_UserService.Regist(userEntity); + if (ret.Code != ResultCode.C_SUCCESS) return false; + } + + var amountInfo = new UpdateAmountRequest() + { + OperateUserName= phone, + Amount = decimal.Parse(notifyOrder.Payment), + OpAmountType = ScoreType.TaoBaoAdd, + UserId = userEntity.Id, + AttchInfo = notifyOrder.Tid + }; + var retAmount = await m_UserService.UpdateAmount(amountInfo); + + await m_CouponService.TaoBaoGive(userEntity.Id, 1, userEntity.TaoBao); + + + var taobaoEntity = notifyOrder.MapTo(); + taobaoEntity.Phone = phone; + taobaoEntity.SkuPropertiesName = notifyOrder.Orders.FirstOrDefault()?.SkuPropertiesName; + + await m_TaoBaoService.Add(taobaoEntity); + + return retAmount.Code == ResultCode.C_SUCCESS; + }; + var info = await m_TaoBaoService.ReceivedMsg(this.Request, process); + return Content(info); + } + + [HttpPost, UserAuth] + public async Task UpdateInfo(User request) + { + var userEntity = await this.m_UserService.GetById(this.Request.GetUserInfo().UserId); + userEntity.Wx = request.Wx; + userEntity.QQ = request.QQ; + userEntity.TaoBao = request.TaoBao; + userEntity.Email = request.Email; + userEntity.WangWang = request.WangWang; + var ret = await m_UserService.Update(userEntity); + var flag = m_CouponUserOrginService.Exist(m => m.ToUser == userEntity.Id && m.OriginType == Enums.CouponOriginType.UserInfo); + if (!flag) + await m_CouponService.Give(6, "", userEntity.Id, 1, Hncore.Pass.Sells.Domain.Enums.CouponOriginType.UserInfo, "完善信息"); + return RedirectToAction("Index"); + } + + [HttpPost, UserAuth] + public async Task UpdatePwd([FromBody]UpdatePwdModel request) + { + if (request.NewPwd != request.ConfirmPwd) + { + return new ApiResult(ResultCode.C_INVALID_ERROR,"密码不一致"); + } + var ret = await this.m_UserService.UpdatePwd(this.Request.GetUserInfo().UserId, request.OldPwd, request.NewPwd); + return ret; + } + [HttpPost, UserAuth] + public async Task UpdateAccountPwd([FromBody]UpdateAccountPwdRequest request) + { + return await m_ProductAccountService.UpdateAccountPwd(request); + } + + + + + [HttpGet, AllowAnonymous] + public IActionResult MP_GetUserInfo(string appid, string callbakUrl, string state = "") + { + callbakUrl = callbakUrl.UrlEncode(); + var baseUrl = m_Configuration["BaseInfoUrl"]; + var getUserInfo_Callback = $"{baseUrl}User/MP_GetUserInfo_Callback?returnUrl={callbakUrl}&appid={appid}"; + + getUserInfo_Callback = getUserInfo_Callback.UrlEncode(); + + var wxUrl = $"https://open.weixin.qq.com/connect/oauth2/authorize?appid={appid}&redirect_uri={getUserInfo_Callback}&response_type=code&scope=snsapi_userinfo&state={state}#wechat_redirect"; + LogHelper.Debug("WxAuth_GetUserInfo", $"wxUrl={wxUrl}"); + + return Redirect(wxUrl); + } + + /// + /// 公众平台 网页授权 回调 + /// + /// + /// + /// + /// + /// + [HttpGet, AllowAnonymous] + public async Task MP_GetUserInfo_Callback(string appid, string code, string state, string returnUrl) + { + LogHelper.Debug("GetUserInfo_Callback", $"appid={appid},code={code}, state={state}, returnUrl={returnUrl}"); + + if (string.IsNullOrWhiteSpace(returnUrl)) + { + return; + } + + var access_token = ""; + var openid = ""; + + var weToken = await WxOpenApi.GetWebAccessToken(appid, code); + if (weToken != null && weToken.errcode == 0) + { + access_token = weToken.access_token; + openid = weToken.openid; + } + else + { + LogHelper.Error("GetWebAccessToken", weToken?.errmsg); + return; + } + + var userInfo = await WxOpenApi.GetUserinfoByWebAccessToken(access_token, openid); + + if (userInfo==null) + { + LogHelper.Error("GetUserinfoByWebAccessToken",$"access_token={access_token},openid={openid}"); + return; + } + if (userInfo.errcode > 0) + { + LogHelper.Error("GetUserinfoByWebAccessToken", userInfo.errmsg); + return; + } + if (state.Has()) + { + var userId = Convert.ToInt32(state); + var wx = new Hncore.Pass.BaseInfo.Models.WxAppUserEntity() + { + Appid = appid, + UserId = userId, + HeadImgUrl = userInfo.headimgurl, + NickName = userInfo.nickname, + City = userInfo.city, + Country = userInfo.country, + Openid = userInfo.openid, + UserName = userInfo.nickname + }; + await m_WxAppUserService.Bind(wx); + } + var wxUserInfo = await m_WxAppUserService.GetWxUser(appid, userInfo.openid); + if (wxUserInfo != null) + { + var userEntity = await m_UserService.GetById(wxUserInfo.UserId); + var loginRet = m_UserService.LoginInternal(userEntity, wxUserInfo); + this.HttpContext.Response.Cookies.Append("token", loginRet.Token); + this.HttpContext.Response.Cookies.Append("userInfo", loginRet.User.ToJson()); + this.Response.Redirect(returnUrl); + } + else + { + var baseUrl = m_Configuration["BaseInfoUrl"]; + var loginUrl = $"{baseUrl}User/WebLogin?redirect={returnUrl}"; + // returnUrl = UrlHelper.SetUrlParam(returnUrl, "act", "login"); + this.Response.Redirect(loginUrl); + } + } + + + /// + /// 充值 + /// + /// + /// + + [HttpPost, UserAuth] + public async Task CreateOrder([FromBody]CreateOrderRequest request) + { + var userId = this.Request.GetUserInfo().UserId; + var ret = await m_ChargeService.CreateOrder(request, userId); + + if (ret.Code != ResultCode.C_SUCCESS) + { + return ret; + } + + var data = new ChargeOrderPayModel() + { + OrderInfo = ret.Data, + }; + if (ret.Data.PayChannel == UPayChannel.WxH5|| ret.Data.PayChannel == UPayChannel.WxPc||ret.Data.PayChannel == UPayChannel.WxMp) + { + var url = await CreateWxPayOrder(ret.Data); + data.PayData = url; + return new ApiResult(data); + } + else + { + var body = await CreateAliPayOrder(ret.Data); + data.PayData = body; + } + return new ApiResult(data); + } + [HttpGet,AllowAnonymous] + public async Task IsPay(string orderNo) + { + var orderInfo = await m_ChargeService.GetOrderByNo(orderNo); + if (orderInfo.OrderState == UOrderStatus.PayOk || orderInfo.OrderState == UOrderStatus.Complete) + return new ApiResult(1); + else + return new ApiResult(0); + } + + + #region 微信支付 + private async Task CreateWxPayOrder(UserChargeOrderEntity request) + { + string callBackUrl = m_Configuration["UNotifyUrl"]; + var wxAppId = m_Configuration["WxApps:AppID"]; + var wxMchId = m_Configuration["WxApps:MchId"]; + var wxMchKey = m_Configuration["WxApps:MchKey"]; + var mchInfo = new MchInfo() + { + MchId = wxMchId, + Key = wxMchKey + }; + + string createOrderRes = ""; + if (request.PayChannel == UPayChannel.WxPc) + { + var payRequest = new WxScanPayCreateOrderRequest() + { + AppId = wxAppId, + Body = request.OrderName, + MchId = wxMchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.PaymentAmount * 100), + ProductId = request.OrderAmount.ToString(), + TimeExpire = DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.ScanPayCreateOrderAsync(payRequest, mchInfo); + } + else if (request.PayChannel == UPayChannel.WxH5) + { + var payRequest = new WxH5PayCreateOrderRequest() + { + AppId = wxAppId, + Body = request.OrderName, + MchId = wxMchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.PaymentAmount * 100), + ProductId = request.OrderAmount.ToString(), + TimeExpire = DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.H5PayCreateOrderAsync(payRequest, mchInfo); + } + else + { + var wxUserInfo = await m_WxAppUserService.GetWxUser(wxMchId, request.UserId); + var payRequest = new WxJsPayCreateOrderRequest() + { + AppId = wxAppId, + Body = request.OrderName, + MchId = wxMchId, + NotifyUrl = callBackUrl, + OutTradeNo = request.OrderNo, + StoreId = 2, + TenantId = 1157, + TotalFee = (int)(request.PaymentAmount * 100), + UserOpenId = wxUserInfo.Openid, + TimeExpire = DateTime.Now.AddMinutes(15).ToString("yyyyMMddHHmmss") + }; + createOrderRes = await m_WxPayClient.JsPayCreateOrderAsync(payRequest, mchInfo); + } + return createOrderRes; + } + + [HttpPost, AllowAnonymous] + public async Task WxOrderCallBack() + { + var wxAppId = m_Configuration["WxApps:AppID"]; + var wxMchId = m_Configuration["WxApps:MchId"]; + var wxMchKey = m_Configuration["WxApps:MchKey"]; + try + { + string xml = ""; + LogHelper.Trace("微信支付回调开始", "Notify"); + if (Request.Body.CanSeek) + { + Request.Body.Position = 0; + } + + using (System.IO.StreamReader reader = new System.IO.StreamReader(Request.Body)) + { + xml = reader.ReadToEnd(); + } + + LogHelper.Trace("微信支付回调,原始数据:", $"{xml}"); + + WxPayChecker payData = new WxPayChecker(); + + + payData.FromXmlNoCheckSign(xml); + + if (!payData.IsSet("out_trade_no")) + { + return FailXml(); + } + + // 给支付平台的订单号为支付记录id + string orderId = payData["out_trade_no"]; + + string TransactionId = payData["transaction_id"]; + + var order = await m_ChargeService.GetOrderByNo(orderId); + if (order.OrderState == UOrderStatus.Complete || order.OrderState == UOrderStatus.PayOk) + return SuccessXml(); + + var queryRet = await m_WxPayClient.OrderQuery(new WxJsPayOrderQueryRequest() + { + AppId = wxAppId, + NonceStr = payData.GenerateNonceStr(), + TransactionId = TransactionId + }, new MchInfo() { MchId = wxMchId, Key = wxMchKey }); + if (!queryRet) return FailXml(); + + + payData.MchKey = wxMchKey; + if (!payData.CheckSign()) return FailXml(); + order.OrderState = UOrderStatus.PayOk; + order.TradeNo = TransactionId; + order.UpdateTime = DateTime.Now; + await m_ChargeService.Update(order); + await m_ChargeService.ProcessOrderAccount(order); + } + catch (Exception e) + { + LogHelper.Error("微信支付通知处理失败", e); + + return FailXml(); + } + return SuccessXml(); + } + + public string FailXml() + { + return "FAIL "; + } + + private string SuccessXml() + { + return "SUCCESS "; + } + + #endregion + + + #region 阿里支付 + private async Task CreateAliPayOrder(UserChargeOrderEntity request) + { + if (request.PayChannel == UPayChannel.AliPc) + { + var Ali_APP_ID = m_Configuration["Aliyun:Pay:AppId"]; + var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:Pay:PrivateKey"]; + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"];//支付宝的公钥,而不是应用的公钥 + string callBackUrl = m_Configuration["Aliyun:Pay:UNotifyUrl"]; + string ReturnUrl = m_Configuration["Aliyun:Pay:UReturnUrl"]; + + + // 组装业务参数model + AlipayTradePagePayModel model = new AlipayTradePagePayModel + { + Body = request.OrderName, + Subject = request.OrderName, + TotalAmount = request.PaymentAmount.ToString(), + OutTradeNo = request.OrderNo, + ProductCode = "FAST_INSTANT_TRADE_PAY",//QUICK_WAP_PAY + TimeoutExpress = "15m" + }; + + AlipayTradePagePayRequest aliRequest = new AlipayTradePagePayRequest(); + // 设置同步回调地址 + aliRequest.SetReturnUrl(ReturnUrl); + // 设置异步通知接收地址 + aliRequest.SetNotifyUrl(callBackUrl); + // 将业务model载入到request + aliRequest.SetBizModel(model); + + var _aopClient = new DefaultAopClient("https://openapi.alipay.com/gateway.do", Ali_APP_ID, Ali_APP_PRIVATE_KEY); + + var response = await _aopClient.PageExecuteAsync(aliRequest); + + return response.Body; + + } + else if (request.PayChannel == UPayChannel.AliH5) + { + var Ali_APP_ID = m_Configuration["Aliyun:PayH5:AppId"]; + var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:PayH5:PrivateKey"]; + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + var callBackUrl = m_Configuration["Aliyun:PayH5:UNotifyUrl"]; + var ReturnUrl = m_Configuration["Aliyun:PayH5:UReturnUrl"]; + + // 组装业务参数model + AlipayTradeWapPayModel model = new AlipayTradeWapPayModel + { + Body = request.OrderName, + Subject = request.OrderName, + TotalAmount = request.PaymentAmount.ToString(), + OutTradeNo = request.OrderNo, + ProductCode = "QUICK_WAP_PAY", + QuitUrl = this.Request.GetUrl(), + TimeoutExpress = "15m" + }; + + AlipayTradeWapPayRequest aliRequest = new AlipayTradeWapPayRequest(); + // 设置同步回调地址 + aliRequest.SetReturnUrl(ReturnUrl); + // 设置异步通知接收地址 + aliRequest.SetNotifyUrl(callBackUrl); + // 将业务model载入到request + aliRequest.SetBizModel(model); + + var _aopClient = new DefaultAopClient("https://openapi.alipay.com/gateway.do", Ali_APP_ID, Ali_APP_PRIVATE_KEY); + + var response = await _aopClient.PageExecuteAsync(aliRequest); + + return response.Body; + } + return ""; + } + + /// + /// 支付同步回调 + /// + [HttpGet, AllowAnonymous] + public IActionResult AliReturn() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"]; + + Dictionary sArray = GetRequestGet(); + if (sArray.Count != 0) + { + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + var ordereNo = sArray["out_trade_no"]; + // var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + Console.WriteLine($"同步验证通过,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证通过"; + } + else + { + Console.WriteLine($"同步验证失败,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证失败"; + } + } + return Redirect("~/User/Index"); + } + + [HttpPost, AllowAnonymous] + public async Task AliNotify() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"]; + Dictionary sArray = GetRequestPost(); + + LogHelper.Info("AliNotify", AlipaySignature.GetSignContent(sArray)); + if (sArray.Count != 0) + { + // bool flag = AlipaySignature.RSA2Check(sArray, ALIPAY_PUBLIC_KEY); + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + //交易状态 + //判断该笔订单是否在商户网站中已经做过处理 + //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序 + //请务必判断请求时的total_amount与通知时获取的total_fee为一致的 + //如果有做过处理,不执行商户的业务程序 + + //注意: + //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知 + try + { + var ordereNo = sArray["out_trade_no"]; + var order = await m_ChargeService.GetOrderByNo(ordereNo); + if (order.OrderState == UOrderStatus.Complete || order.OrderState == UOrderStatus.PayOk) + { + await Response.WriteAsync("success"); + return; + } + + order.OrderState = UOrderStatus.PayOk; + order.TradeNo = sArray["trade_no"]; + order.UpdateTime = DateTime.Now; + await m_ChargeService.Update(order); + await m_ChargeService.ProcessOrderAccount(order); + + Console.WriteLine(Request.Form["trade_status"]); + + await Response.WriteAsync("success"); + } + catch (Exception ex) + { + LogHelper.Error("AliNotify.Exception", ex.Message); + await Response.WriteAsync("fail"); + } + + } + else + { + LogHelper.Error("AliNotify.Error", "签名校验失败"); + await Response.WriteAsync("fail"); + } + } + } + + + /// + /// 支付同步回调 + /// + [HttpGet, AllowAnonymous] + public IActionResult AliReturnH5() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + + + Dictionary sArray = GetRequestGet(); + if (sArray.Count != 0) + { + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + var ordereNo = sArray["out_trade_no"]; + // var order = await m_ProductOrderService.GetOrderByNo(ordereNo); + Console.WriteLine($"同步验证通过,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证通过"; + } + else + { + Console.WriteLine($"同步验证失败,订单号:{sArray["out_trade_no"]}"); + ViewData["PayResult"] = "同步验证失败"; + } + } + return Redirect("~/User/Index"); + } + + [HttpPost, AllowAnonymous] + public async Task AliNotifyH5() + { + /* 实际验证过程建议商户添加以下校验。 + 1、商户需要验证该通知数据中的out_trade_no是否为商户系统中创建的订单号, + 2、判断total_amount是否确实为该订单的实际金额(即商户订单创建时的金额), + 3、校验通知中的seller_id(或者seller_email) 是否为out_trade_no这笔单据的对应的操作方(有的时候,一个商户可能有多个seller_id/seller_email) + 4、验证app_id是否为该商户本身。 + */ + var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"]; + Dictionary sArray = GetRequestPost(); + LogHelper.Info("AliNotify", AlipaySignature.GetSignContent(sArray)); + if (sArray.Count != 0) + { + // bool flag = AlipaySignature.RSA2Check(sArray, ALIPAY_PUBLIC_KEY); + bool flag = AlipaySignature.RSACheckV2(sArray, ALIPAY_PUBLIC_KEY, "utf-8", "RSA2", false); + if (flag) + { + //交易状态 + //判断该笔订单是否在商户网站中已经做过处理 + //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序 + //请务必判断请求时的total_amount与通知时获取的total_fee为一致的 + //如果有做过处理,不执行商户的业务程序 + + //注意: + //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知 + try + { + var ordereNo = sArray["out_trade_no"]; + var order = await m_ChargeService.GetOrderByNo(ordereNo); + if (order.OrderState == UOrderStatus.Complete || order.OrderState == UOrderStatus.PayOk) + { + await Response.WriteAsync("success"); + return; + } + + + order.OrderState = UOrderStatus.PayOk; + order.TradeNo = sArray["trade_no"]; + order.UpdateTime = DateTime.Now; + await m_ChargeService.Update(order); + await m_ChargeService.ProcessOrderAccount(order); + + Console.WriteLine(Request.Form["trade_status"]); + + await Response.WriteAsync("success"); + } + catch (Exception ex) + { + LogHelper.Error("AliNotify.Exception", ex.Message); + await Response.WriteAsync("fail"); + } + + } + else + { + LogHelper.Error("AliNotify.Error", "签名校验失败"); + await Response.WriteAsync("fail"); + } + } + } + + + + + private Dictionary GetRequestGet() + { + Dictionary sArray = new Dictionary(); + + ICollection requestItem = Request.Query.Keys; + foreach (var item in requestItem) + { + sArray.Add(item, Request.Query[item]); + + } + return sArray; + + } + + + private Dictionary GetRequestPost() + { + Dictionary sArray = new Dictionary(); + + ICollection requestItem = Request.Form.Keys; + foreach (var item in requestItem) + { + sArray.Add(item, Request.Form[item]); + + } + return sArray; + + } + + #endregion + + + + [HttpGet, UserAuth] + public async Task OnLine(int productId,string account) + { + var data= await m_agentService.OnLine(productId, account); + + return View(data.Data); + } + } +} diff --git a/Host/Controllers/WeiXinController.cs b/Host/Controllers/WeiXinController.cs new file mode 100644 index 0000000..1b608fa --- /dev/null +++ b/Host/Controllers/WeiXinController.cs @@ -0,0 +1,120 @@ +using Hncore.Infrastructure.Common; +using Hncore.Infrastructure.Extension; +using Hncore.Pass.BaseInfo.Service; +using Hncore.Pass.Sells.Service; +using Hncore.Wx.Open; +using Home.Models; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; +using Senparc.NeuChar.App.Entities; +using Senparc.Weixin.MP; +using System; +using System.Threading.Tasks; + +namespace Home.Controllers +{ + [AllowAnonymous] + [Controller] + [Route("[Controller]/[Action]")] + public class WeiXinController : Controller + { + WxAppUserService m_WxAppUserService; + CouponService m_CouponService; + IConfiguration m_Configuration; + public WeiXinController(IConfiguration _Configuration + , WxAppUserService _WxAppUserService + , CouponService _CouponService) + { + m_WxAppUserService = _WxAppUserService; + m_CouponService = _CouponService; + m_Configuration = _Configuration; + } + + [HttpGet] + [ActionName("Index")] + public ActionResult Get(string signature, string timestamp, string nonce, string echostr) + { + if (CheckSignature.Check(signature, timestamp, nonce, "hualian")) + { + return Content(echostr); //返回随机字符串则表示验证通过 + } + else + { + return Content("failed"); + } + } + + /// + /// 最简化的处理流程(不加密) + /// + [HttpPost] + [ActionName("Index")] + public ActionResult Post(PostModel postModel) + { + if (!CheckSignature.Check(postModel.Signature, postModel.Timestamp, postModel.Nonce, "hualian")) + { + return Content("参数错误!"); + } + + postModel.Token ="hualian"; + postModel.EncodingAESKey = m_Configuration["WxApps:EncodingAESKey"];//根据自己后台的设置保持一致 + postModel.AppId = m_Configuration["WxApps:AppID"];//根据自己后台的设置保持一致 + + + + var messageHandler = new MyMessageHandler(Request.Body, m_WxAppUserService,m_CouponService); + + messageHandler.Execute();//执行微信处理过程 + + return Content(messageHandler.ResponseDocument.ToString());//v0.7- + //return new WeixinResult(messageHandler);//v0.8+ + // return new FixWeixinBugWeixinResult(messageHandler);//v0.8+ + } + + /// + /// 微信后台推送过来的用户与公众号交互的信息 消息和事件 + /// + /// + /// + /// + /// + /// + [HttpPost("{appid}"), AllowAnonymous] + public async Task msg_notice(string appid, string timestamp, string nonce, string encrypt_type, string msg_signature) + { + LogHelper.Debug("公众号交互消息", $"appid={appid},{timestamp},{nonce},{encrypt_type},{msg_signature}"); + var msg = await this.Request.Body.ReadAsStringAsync(); + LogHelper.Debug("公众号交互消息-加密", msg); + var token = m_Configuration["WxOpen:Token"]; + var decyptKey = m_Configuration["WxOpen:DecyptKey"]; + var appID = m_Configuration["WxOpen:AppID"]; + string decMsg = ""; + var wxcpt = new WxOpenCrypt(token, decyptKey, appID); + var ret = wxcpt.DecryptMsg(msg_signature, timestamp, nonce, msg, ref decMsg); + if (ret != 0) + { + LogHelper.Error("开放平台推送的消息-解密失败", ret); + return "faild"; + } + + var flag = false; + try + { + var requestMessage = MessageFactory.GetRequestEntity(decMsg); + if (requestMessage != null) + { + requestMessage.AppId = appid; + flag = await requestMessage.Handler(); + } + } + catch (Exception ex) + { + LogHelper.Fatal("微信开放平台的消息-解析失败", ex.Message); + LogHelper.Error("开放平台推送的消息-解密的消息", decMsg); + flag = false; + } + return flag ? "success" : "faild"; + } + } +} diff --git a/Host/Dockerfile b/Host/Dockerfile new file mode 100644 index 0000000..8e59285 --- /dev/null +++ b/Host/Dockerfile @@ -0,0 +1,4 @@ +FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-stretch-slim AS base +WORKDIR /app +COPY . . +ENTRYPOINT ["dotnet", "Host.dll"] \ No newline at end of file diff --git a/Host/Host.csproj b/Host/Host.csproj new file mode 100644 index 0000000..ab88c40 --- /dev/null +++ b/Host/Host.csproj @@ -0,0 +1,66 @@ + + + + netcoreapp2.2 + Linux + + + + + + + + + + + + + + all + true + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + diff --git a/Host/Map/MapConfig.cs b/Host/Map/MapConfig.cs new file mode 100644 index 0000000..959746a --- /dev/null +++ b/Host/Map/MapConfig.cs @@ -0,0 +1,18 @@ +using Hncore.Infrastructure.Extension; +using Hncore.Pass.Sells.Domain; +using Hncore.Pass.Vpn.Domain; +using Home.Models; +using Host.Models; + +namespace Home.Map +{ + public class MapConfig + { + public static void Config() + { + TinyMapperExtension.Binds(); + + TinyMapperExtension.Binds(); + } + } +} diff --git a/Host/MobileViewLocationExpander.cs b/Host/MobileViewLocationExpander.cs new file mode 100644 index 0000000..4649193 --- /dev/null +++ b/Host/MobileViewLocationExpander.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Razor; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace Host +{ + public class MobileViewLocationExpander : IViewLocationExpander + { + public MobileViewLocationExpander() + { + } + + private static Regex _detectmobilebrowserregex_b = new Regex(@"(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino", RegexOptions.IgnoreCase | RegexOptions.Multiline); + private static Regex _detectmobilebrowserregex_v = new Regex(@"1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-", RegexOptions.IgnoreCase | RegexOptions.Multiline); + + public void PopulateValues([FromServices]ViewLocationExpanderContext context) + { + var userAgent = context.ActionContext.HttpContext.Request.Headers["User-Agent"]; + + object area = ""; + if (context.ActionContext.RouteData.Values.TryGetValue("area", out area) && area.ToString().Equals("admin", StringComparison.CurrentCultureIgnoreCase)) + { + context.Values["mobile"] = ""; + return; + } + if (IsMobile(userAgent)) + { + context.Values["mobile"] = ".Mobile"; + } + else + { + context.Values["mobile"] = ""; + } + } + private bool IsMobile(string userAgent) + { + if (string.IsNullOrEmpty(userAgent)) + return false; + + if ((_detectmobilebrowserregex_b.IsMatch(userAgent) || _detectmobilebrowserregex_v.IsMatch(userAgent.Substring(0, 4)))) + return true; + + return false; + } + + + public virtual IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, + IEnumerable viewLocations) + { + return viewLocations.Select(f => f.Replace("/Views/", $"/Views{context.Values["mobile"]}/")); + } + } +} diff --git a/Host/Models/AccountSearchModel.cs b/Host/Models/AccountSearchModel.cs new file mode 100644 index 0000000..44efab8 --- /dev/null +++ b/Host/Models/AccountSearchModel.cs @@ -0,0 +1,17 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class AccountSearchModel : PageRequestBase + { + public DateTime? BTime { get; set; } + public DateTime? ETime { get; set; } + public int? ExpiredDay { get; set; } = -1;//OrderType + + public int ProductId { get; set; } = 0; + public int PackageId { get; set; } = 0; + + } +} diff --git a/Host/Models/ArticleInfoMode.cs b/Host/Models/ArticleInfoMode.cs new file mode 100644 index 0000000..b2fb20f --- /dev/null +++ b/Host/Models/ArticleInfoMode.cs @@ -0,0 +1,14 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class ArticleInfoMode + { + public ArticleEntity Prev { get; set; } + public ArticleEntity Info { get; set; } + public ArticleEntity Next { get; set; } + + } +} diff --git a/Host/Models/ArticleSearchModel.cs b/Host/Models/ArticleSearchModel.cs new file mode 100644 index 0000000..59291de --- /dev/null +++ b/Host/Models/ArticleSearchModel.cs @@ -0,0 +1,12 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class ArticleSearchModel : PageRequestBase + { + public ArticleCatalog Catalog { get; set; } = ArticleCatalog.Top; + + } +} diff --git a/Host/Models/ChargeOrderPayModel.cs b/Host/Models/ChargeOrderPayModel.cs new file mode 100644 index 0000000..b391caf --- /dev/null +++ b/Host/Models/ChargeOrderPayModel.cs @@ -0,0 +1,13 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.BaseInfo.Models; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class ChargeOrderPayModel + { + public UserChargeOrderEntity OrderInfo { get; set; } + public string PayData { get; set; } + } +} diff --git a/Host/Models/ErrorViewModel.cs b/Host/Models/ErrorViewModel.cs new file mode 100644 index 0000000..b02c2a4 --- /dev/null +++ b/Host/Models/ErrorViewModel.cs @@ -0,0 +1,11 @@ +using System; + +namespace Home.Models +{ + public class ErrorViewModel + { + public string RequestId { get; set; } + + public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); + } +} \ No newline at end of file diff --git a/Host/Models/LineSearchModel.cs b/Host/Models/LineSearchModel.cs new file mode 100644 index 0000000..8c34550 --- /dev/null +++ b/Host/Models/LineSearchModel.cs @@ -0,0 +1,11 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class LineSearchModel : PageRequestBase + { + public int ProductId { get; set; } = 0; + } +} diff --git a/Host/Models/OrderPayModel.cs b/Host/Models/OrderPayModel.cs new file mode 100644 index 0000000..bd11cca --- /dev/null +++ b/Host/Models/OrderPayModel.cs @@ -0,0 +1,12 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class OrderPayModel + { + public ProductOrderEntity OrderInfo { get; set; } + public string PayData { get; set; } + } +} diff --git a/Host/Models/OrderSearchModel.cs b/Host/Models/OrderSearchModel.cs new file mode 100644 index 0000000..86c87e4 --- /dev/null +++ b/Host/Models/OrderSearchModel.cs @@ -0,0 +1,18 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class OrderSearchModel: PageRequestBase + { + public DateTime? BTime { get; set; } + public DateTime? ETime { get; set; } + public int? OrderType { get; set; } = 0;//OrderType + + public int ProductId { get; set; } = 0; + public int PackageId { get; set; } = 0; + + public int IsRefund { get; set; } + } +} diff --git a/Host/Models/OriginAccountAuthRequest.cs b/Host/Models/OriginAccountAuthRequest.cs new file mode 100644 index 0000000..8892f18 --- /dev/null +++ b/Host/Models/OriginAccountAuthRequest.cs @@ -0,0 +1,15 @@ +namespace Home.Models +{ + public class OriginAccountAuthRequest + { + public int ProductId { get; set; } + public string Account { get; set; } + + public string Pwd { get; set; } + + public int StartNum { get; set; } = 0; + + public int Count { get; set; } = 0; + + } +} diff --git a/Host/Models/ProductModel.cs b/Host/Models/ProductModel.cs new file mode 100644 index 0000000..221929d --- /dev/null +++ b/Host/Models/ProductModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Home.Models +{ + public class ProductModel + { + public int Id { get; set; } + public string Name { get; set; } + public string Image { get; set; } + public int Sort { get; set; } = 0; + public string Content { get; set; } + public string Profile { get; set; } + public string Identify { get; set; } + } +} diff --git a/Host/Models/RegistModel.cs b/Host/Models/RegistModel.cs new file mode 100644 index 0000000..687e935 --- /dev/null +++ b/Host/Models/RegistModel.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Home.Models +{ + public class PhoneModel + { + public string Phone { get; set; } + public string Pwd { get; set; } + public string Code { get; set; } + public string Wx { get; set; } + public string QQ { get; set; } + } +} diff --git a/Host/Models/TaoBaoNotifyModel.cs b/Host/Models/TaoBaoNotifyModel.cs new file mode 100644 index 0000000..851b5ff --- /dev/null +++ b/Host/Models/TaoBaoNotifyModel.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Host.Models +{ + public class TaoBaoNotifyModel + { + public string Platform { get; set; } + public string PlatformUserId { get; set; } + public string ReceiverName { get; set; } + public string ReceiverMobile { get; set; } + public string ReceiverPhone { get; set; } + public string ReceiverAddress { get; set; } + public string BuyerArea { get; set; } + public string Tid { get; set; } + public string Status { get; set; } + public string SellerNick { get; set; } + public string BuyerNick { get; set; } + public object Type { get; set; } + public string BuyerMessage { get; set; } + public string Price { get; set; } + public int Num { get; set; } + public string TotalFee { get; set; } + public string Payment { get; set; } + public string PayTime { get; set; } + public object PicPath { get; set; } + public object PostFee { get; set; } + public string Created { get; set; } + public object TradeFrom { get; set; } + public List Orders { get; set; } + public string SellerMemo { get; set; } + public int SellerFlag { get; set; } + public string CreditCardFee { get; set; } + } + + + public class TaoBaoOrder + { + public string Oid { get; set; } + public long NumIid { get; set; } + public string OuterIid { get; set; } + public string OuterSkuId { get; set; } + public string Title { get; set; } + public string Price { get; set; } + public int Num { get; set; } + public string TotalFee { get; set; } + public string Payment { get; set; } + public string PicPath { get; set; } + public string SkuId { get; set; } + public string SkuPropertiesName { get; set; } + public string DivideOrderFee { get; set; } + public string PartMjzDiscount { get; set; } + } + + +} diff --git a/Host/Models/UpdateAccountPwdModel.cs b/Host/Models/UpdateAccountPwdModel.cs new file mode 100644 index 0000000..ba8bf3f --- /dev/null +++ b/Host/Models/UpdateAccountPwdModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Home.Models +{ + public class UpdateAccountPwdModel + { + public int ProductId { get; set; } + public int UserId { get; set; } + public string Account { get; set; } + public string Pwd { get; set; } + } +} diff --git a/Host/Models/UpdatePwdModel.cs b/Host/Models/UpdatePwdModel.cs new file mode 100644 index 0000000..03c7a1c --- /dev/null +++ b/Host/Models/UpdatePwdModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Home.Models +{ + public class UpdatePwdModel + { + public string OldPwd { get; set; } + public string NewPwd { get; set; } + public string ConfirmPwd { get; set; } + } +} diff --git a/Host/Models/UserHomeModel.cs b/Host/Models/UserHomeModel.cs new file mode 100644 index 0000000..1a06979 --- /dev/null +++ b/Host/Models/UserHomeModel.cs @@ -0,0 +1,46 @@ +using Hncore.Pass.BaseInfo.Models; +using Hncore.Pass.Vpn.Domain; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Home.Models +{ + public class UserHomeModel + { + public User UserModel { get; set; } + + public AccountModel AccountModel { get; set; } = new AccountModel(); + + public List TopNewsModel { get; set; } + + public StatisticModel Statistic { get; set; } = new StatisticModel(); + + } + + public class AccountModel + { + public int TotalCount { get; set; } + + public int ExpriedCount { get; set; } + } + + public class StatisticModel + { + public decimal TodayExpend { get; set; } + + public decimal TodayRefund { get; set; } + + public decimal TodayCharege { get; set; } + + public decimal MonthExpend { get; set; } + + public decimal MonthRefund { get; set; } + + public decimal MonthCharege { get; set; } + + public decimal YearExpend { get; set; } + } + +} diff --git a/Host/Models/WxMsg/MyMessageHandler.cs b/Host/Models/WxMsg/MyMessageHandler.cs new file mode 100644 index 0000000..a41b128 --- /dev/null +++ b/Host/Models/WxMsg/MyMessageHandler.cs @@ -0,0 +1,113 @@ +using Senparc.Weixin.MP.MessageHandlers; +using Senparc.Weixin.MP.Entities; +using System; +using System.IO; +using System.Linq; +using System.Xml.Linq; +using Senparc.Weixin.MP.MessageContexts; +using Senparc.NeuChar.Entities; +using Senparc.Weixin.MP.Entities.Request; +using Hncore.Pass.BaseInfo.Service; +using Hncore.Pass.Sells.Service; +using Hncore.Wx.Open; +using Hncore.Infrastructure.Common; + +namespace Home.Models +{ + public class MyMessageHandler : MessageHandler + { + WxAppUserService m_WxAppUserService; + CouponService m_CouponService; + + public MyMessageHandler(Stream inputStream + , WxAppUserService _WxAppUserService + , CouponService _CouponService + , PostModel postModel = null + , int maxRecordCount = 0) : base(inputStream, postModel) + { + m_WxAppUserService = _WxAppUserService; + m_CouponService = _CouponService; + } + + + public override IResponseMessageBase OnTextRequest(RequestMessageText requestMessage) + { + string openid = requestMessage.FromUserName; + + if (requestMessage.Content == "Hi") + { + var responseMessage = this.CreateResponseMessage(); + responseMessage.Content = "hello"; + return responseMessage; + } + return base.OnTextRequest(requestMessage); + } + + /// + /// 菜单按钮 + /// + /// + /// + public override IResponseMessageBase OnEvent_ClickRequest(RequestMessageEvent_Click requestMessage) + { + switch (requestMessage.EventKey) + { + case "haibao": return null; + } + return base.OnEvent_ClickRequest(requestMessage); + } + + /// + /// 关注 + /// + /// + /// + public override IResponseMessageBase OnEvent_SubscribeRequest(RequestMessageEvent_Subscribe requestMessage) + { + LogHelper.Info("OnEvent_SubscribeRequest", requestMessage.FromUserName); + string appId = requestMessage.ToUserName; + string openid = requestMessage.FromUserName; + var appWxinfo = m_WxAppUserService.GetByOpenId(openid); + if (appWxinfo == null) + { + var mpUserInfo = WxOpenApi.GetUserinfoByOpenId(appId, openid).Result; + var wx = new Hncore.Pass.BaseInfo.Models.WxAppUserEntity() + { + Appid = requestMessage.ToUserName, + UserId = 0, + HeadImgUrl = mpUserInfo.headimgurl, + NickName = mpUserInfo.nickname, + City = mpUserInfo.city, + Country = mpUserInfo.country, + Openid = openid, + UserName = mpUserInfo.nickname, + IsSubscribe=1, + }; + m_WxAppUserService.Add(wx).Wait(); + } + else if (appWxinfo.UserId>0 &&appWxinfo.IsSubscribe == 0) + { + appWxinfo.IsSubscribe = 1; + m_WxAppUserService.Update(appWxinfo).Wait(); + m_CouponService.Give(5, "", appWxinfo.UserId, 1, Hncore.Pass.Sells.Domain.Enums.CouponOriginType.MP, "关注公众号赠送").Wait(); + } + + return base.OnEvent_SubscribeRequest(requestMessage); + } + + + /// + /// 默认消息 + /// + /// + /// + public override IResponseMessageBase DefaultResponseMessage(IRequestMessageBase requestMessage) + { + // var responseMessage = this.CreateResponseMessage(); + // responseMessage.Content = "Hi"; + //return responseMessage; + return null; + + } + } +} \ No newline at end of file diff --git a/Host/Models/WxUserCallbackInfo.cs b/Host/Models/WxUserCallbackInfo.cs new file mode 100644 index 0000000..a22459c --- /dev/null +++ b/Host/Models/WxUserCallbackInfo.cs @@ -0,0 +1,18 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using System; + +namespace Home.Models +{ + public class WxUserCallbackInfo + { + public string openid { get; set; } + public string nickname { get; set; } + public string sex { get; set; } + public string province { get; set; } + public string city { get; set; } + public string country { get; set; } + public string headimgurl { get; set; } + public string unionid { get; set; } + } +} diff --git a/Host/Program.cs b/Host/Program.cs new file mode 100644 index 0000000..65f5ceb --- /dev/null +++ b/Host/Program.cs @@ -0,0 +1,32 @@ +using Microsoft.AspNetCore; +using Microsoft.AspNetCore.Hosting; +using System; +using System.Text; + +namespace Host +{ + public class Program + { + public static void Main(string[] args) + { + CreateWebHostBuilder(args).Build().Run(); + } + + public static IWebHostBuilder CreateWebHostBuilder(string[] args){ + + var hsot = WebHost.CreateDefaultBuilder(args) + .UseStartup(); + if (args.Length > 0) + { + if (args[0] == "-u") + { + hsot.UseUrls(args[1]); + } + } + return hsot; + } + + // .UseStartup(); + // .UseStartup(); + } +} diff --git a/Host/Properties/launchSettings.json b/Host/Properties/launchSettings.json new file mode 100644 index 0000000..b8f3b89 --- /dev/null +++ b/Host/Properties/launchSettings.json @@ -0,0 +1,33 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:60989", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Host": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:5000" + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", + "publishAllPorts": true + } + } +} \ No newline at end of file diff --git a/Host/ScaffoldingReadMe.txt b/Host/ScaffoldingReadMe.txt new file mode 100644 index 0000000..bb06758 --- /dev/null +++ b/Host/ScaffoldingReadMe.txt @@ -0,0 +1,12 @@ +Scaffolding has generated all the files and added the required dependencies. + +However the Application's Startup code may required additional changes for things to work end to end. +Add the following code to the Configure method in your Application's Startup class if not already done: + + app.UseMvc(routes => + { + routes.MapRoute( + name : "areas", + template : "{area:exists}/{controller=Home}/{action=Index}/{id?}" + ); + }); diff --git a/Host/Startup.cs b/Host/Startup.cs new file mode 100644 index 0000000..5c5e968 --- /dev/null +++ b/Host/Startup.cs @@ -0,0 +1,131 @@ +using Hncore.Infrastructure.AliYun; +using Hncore.Infrastructure.WebApi; +using Hncore.Wx.Open; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.AspNetCore.Rewrite; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Logging; +using System; +using System.Net.Http; +using System.Text; +using Hncore.Wx.Open; +using Senparc.Weixin.MP.Containers; +using Senparc.CO2NET.RegisterServices; +using Senparc.Weixin.RegisterServices; +using Microsoft.Extensions.Options; +using Senparc.CO2NET; +using Senparc.Weixin; +using Senparc.Weixin.Entities; +using Senparc.Weixin.MP; + +namespace Host +{ + public class Startup + { + public IConfiguration Configuration { get; } + + Hncore.Pass.BaseInfo.Startup _BaseInfoStartup; + Hncore.Pass.Manage.Startup _ManageStartup; + Hncore.Pass.OSS.Startup _OssStartup; + Hncore.Pass.Vpn.Startup _CourseStartup; + Hncore.Pass.Sells.Startup _SellStartup; + + Hncore.Pass.PaymentCenter.Startup _PaymentCenterStartup; + + public Startup(IHostingEnvironment env) + { + Configuration = env.UseAppsettings(); + + _BaseInfoStartup = new Hncore.Pass.BaseInfo.Startup(env); + _ManageStartup = new Hncore.Pass.Manage.Startup(env); + _OssStartup = new Hncore.Pass.OSS.Startup(env); + _CourseStartup= new Hncore.Pass.Vpn.Startup(env); + _SellStartup = new Hncore.Pass.Sells.Startup(env); + _PaymentCenterStartup = new Hncore.Pass.PaymentCenter.Startup(env); + + } + public IServiceProvider ConfigureServices(IServiceCollection services) + { + services.AddWxApi(); + //删除cookie需要 + //services.Configure(options => + //{ + // options.CheckConsentNeeded = context => false; + // options.MinimumSameSitePolicy = SameSiteMode.None; + //}); + + services.Configure(options => + { + options.ViewLocationExpanders.Add(new MobileViewLocationExpander()); + }); + + services.AddSingleton(); + _OssStartup.ConfigureServices(services); + _ManageStartup.ConfigureServices(services); + _CourseStartup.ConfigureServices(services); + _SellStartup.ConfigureServices(services); + _PaymentCenterStartup.ConfigureServices(services); + + //foreach(var service in services) + //{ + // Console.WriteLine(service.ServiceType.FullName); + //} + services.AddSenparcGlobalServices(Configuration)//Senparc.CO2NET 全局注册 + .AddSenparcWeixinServices(Configuration);//Senparc.Weixin 注册 + + return _BaseInfoStartup.ConfigureServices(services); + } + + public void Configure(IApplicationBuilder app + , IApplicationLifetime applicationLifetime + ,ILoggerFactory loggerFactory + , IHostingEnvironment env + , IHttpClientFactory httpFactory + , IServiceProvider serviceProvider + ,IOptions senparcSetting + , IOptions senparcWeixinSetting) + { + app.UseStaticFiles(); + _ManageStartup.Configure(app, env, loggerFactory, applicationLifetime); + _BaseInfoStartup.Configure(app, applicationLifetime, loggerFactory); + _CourseStartup.Configure(app, applicationLifetime,loggerFactory); + _OssStartup.Configure(app, applicationLifetime, loggerFactory); + _SellStartup.Configure(app, applicationLifetime, loggerFactory); + _PaymentCenterStartup.Configure(app, applicationLifetime, loggerFactory); + + Home.Map.MapConfig.Config(); + app.MapWhen(context => + { + return context.Request.Path.Value.StartsWith("/admin"); + }, appBuilder => + { + var option = new RewriteOptions(); + option.AddRewrite(".*", "/admin/index.html", true); + appBuilder.UseRewriter(option); + appBuilder.UseStaticFiles(); + //appBuilder.Run(async c => + //{ + // var file = env.WebRootFileProvider.GetFileInfo("index.html"); + + // c.Response.ContentType = "text/html"; + // using (var fileStream = new FileStream(file.PhysicalPath, FileMode.Open, FileAccess.Read)) + // { + // await StreamCopyOperation.CopyToAsync(fileStream, c.Response.Body, null, BufferSize, c.RequestAborted); + // } + //}); + }); + app.UseWxApi(); + + //关于 UseSenparcGlobal() 的更多用法见 CO2NET Demo:https://github.com/Senparc/Senparc.CO2NET/blob/master/Sample/Senparc.CO2NET.Sample.netcore/Startup.cs + //IRegisterService register = RegisterService.Start(env, senparcSetting.Value) + // .UseSenparcGlobal(); + //register.UseSenparcWeixin(senparcWeixinSetting.Value, senparcSetting.Value) + // .RegisterMpAccount(senparcWeixinSetting.Value, "【盛派网络小助手】公众号"); + AccessTokenContainer.RegisterAsync(Configuration["WxApps:AppID"], Configuration["WxApps:AppSecret"]); + } + } +} diff --git a/Host/ViewComponent/PagerViewComponent.cs b/Host/ViewComponent/PagerViewComponent.cs new file mode 100644 index 0000000..9d3e2dd --- /dev/null +++ b/Host/ViewComponent/PagerViewComponent.cs @@ -0,0 +1,28 @@ +using Hncore.Infrastructure.WebApi; +using Hncore.Pass.Vpn.Domain; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Threading.Tasks; + +namespace ViewComponents +{ + public class PagerModel + { + public int Total { get; set; } + + public int PageSize { get; set; } = 50; + + public int PageIndex { get; set; } = 1; + + public string Param { get; set; } + + public int TotalPage { get => (int)Math.Ceiling(this.Total / (this.PageSize * 1.0d)); } + } + public class PagerViewComponent: ViewComponent + { + public async Task InvokeAsync(PagerModel model) + { + return View(model); + } + } +} diff --git a/Host/ViewComponent/PayOkViewComponent.cs b/Host/ViewComponent/PayOkViewComponent.cs new file mode 100644 index 0000000..df51f22 --- /dev/null +++ b/Host/ViewComponent/PayOkViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; + +namespace ViewComponents +{ + public class PayOkViewComponent : ViewComponent + { + public async Task InvokeAsync() + { + return View(); + } + } +} diff --git a/Host/ViewComponent/PayWaitViewComponent.cs b/Host/ViewComponent/PayWaitViewComponent.cs new file mode 100644 index 0000000..9e5a850 --- /dev/null +++ b/Host/ViewComponent/PayWaitViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; + +namespace ViewComponents +{ + public class PayWaitViewComponent : ViewComponent + { + public async Task InvokeAsync() + { + return View(); + } + } +} diff --git a/Host/ViewComponent/RedirecctLoginViewComponent.cs b/Host/ViewComponent/RedirecctLoginViewComponent.cs new file mode 100644 index 0000000..3801a8e --- /dev/null +++ b/Host/ViewComponent/RedirecctLoginViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using System.Threading.Tasks; + +namespace ViewComponents +{ + public class RedirecctLoginViewComponent : ViewComponent + { + public async Task InvokeAsync() + { + return View(); + } + } +} diff --git a/Host/Views.Mobile/Article/Index.cshtml b/Host/Views.Mobile/Article/Index.cshtml new file mode 100644 index 0000000..a7a155d --- /dev/null +++ b/Host/Views.Mobile/Article/Index.cshtml @@ -0,0 +1,60 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Data +@using Hncore.Infrastructure.Extension +@model PageData +@{ + var type = this.Context.Request.GetInt("Catalog"); +} + +
+
+

+

搜索热词:账号无法登录如何充值

+
+
+ +
+
+

+

苹果手机教程

+
+
+

+

安卓手机教程

+
+
+

+

安卓模拟器教程

+
+
+

+

windows电脑教程

+
+
+ +
+ + + + +
+
+
    + @foreach (var item in Model.List) + { +
  • @item.Title@item.CreateTime.ToString("yyyy.MM.dd")
  • + + } +
+
+ @*
2
+
3
+
4
*@ +
+
diff --git a/Host/Views.Mobile/Article/Search.cshtml b/Host/Views.Mobile/Article/Search.cshtml new file mode 100644 index 0000000..45034cf --- /dev/null +++ b/Host/Views.Mobile/Article/Search.cshtml @@ -0,0 +1,45 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Data +@using Hncore.Infrastructure.Extension +@model PageData +@{ + var type = this.Context.Request.GetInt("Catalog"); +} + +
+
+

+

搜索热词:账号无法登录如何充值

+
+
+
+
+

+

苹果手机教程

+
+
+

+

安卓手机教程

+
+
+

+

安卓模拟器教程

+
+
+

+

windows电脑教程

+
+
+ +
+
+
+
    + @foreach (var item in Model.List) + { +
  • @item.Title@item.CreateTime.ToString("yyyy.MM.dd")
  • + } +
+
+
+
diff --git a/Host/Views.Mobile/Article/info.cshtml b/Host/Views.Mobile/Article/info.cshtml new file mode 100644 index 0000000..b90e548 --- /dev/null +++ b/Host/Views.Mobile/Article/info.cshtml @@ -0,0 +1,26 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@model ArticleInfoMode +@{ + +} +
+
+

+

搜索热词:账号无法登录如何充值

+
+
+ +
+ 首页>@Model.Info.CatalogId.GetEnumDisplayName() +
+
+ +
+
+

@Model.Info.Title

+

@Model.Info.CreateTime.ToString("yyyy.MM.dd")

+

+ @Html.Raw(Model.Info.Content) +

+
diff --git a/Host/Views.Mobile/Article/taobao.cshtml b/Host/Views.Mobile/Article/taobao.cshtml new file mode 100644 index 0000000..dc83fac --- /dev/null +++ b/Host/Views.Mobile/Article/taobao.cshtml @@ -0,0 +1,39 @@ +
+ +
+ +
+

您可通过淘宝付款,系统自动赠送1元无限制优惠券。

+

购买任意套餐都可以使用(相当于天卡半价),每隔30天可参加一次即得1张。

+
+ +
+ +
+ +
+ —— 为方便充值及开通,请选择自己需要的产品的对应店铺 —— +
+
+ + + +
\ No newline at end of file diff --git a/Host/Views.Mobile/Home/Index.cshtml b/Host/Views.Mobile/Home/Index.cshtml new file mode 100644 index 0000000..1ec162c --- /dev/null +++ b/Host/Views.Mobile/Home/Index.cshtml @@ -0,0 +1,303 @@ +@model List +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer +@using Hncore.Pass.Vpn.Service +@using Hncore.Pass.Vpn.Domain +@using Microsoft.Extensions.Configuration +@inject ArticleService m_ArticleService +@inject IConfiguration m_Configuration +@{ + ViewData["Title"] = "聚IP JUIP.COM-千万动态ip切换,自建机房ip代理覆盖全国,多款市面热销产品"; + Layout = "_Layout"; + + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + + var articleNews = await m_ArticleService.GetTop(12, ArticleCatalog.Top); + var activityNews = await m_ArticleService.GetTop(12, ArticleCatalog.Activity); + var helpsNews = await m_ArticleService.GetTop(12, ArticleCatalog.Help); + var QANews = await m_ArticleService.GetTop(12, ArticleCatalog.QA); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; + var epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000; + var countStr = epoch.ToString().Substring(0, 8); +} + + + + + + +
+

PRODUCTS

+

产品介绍

+
+
+ +
+
+ @foreach (var item in Model.Where(m => m.Sort != 1000)) + { +
+
+ @*
+ +
*@ +
+ @item.Name +
+
+ @item.Profile +
+ + +
+
+ } +
+ +
+
+
+
+ +
+ +
+
+
+
+
+ +
+
+ 全网产品最多IP库最大 +
+
+ 旗下有强子PPTP,老鹰PPTP,先锋PPTP,星星PPTP等十几种动态IP,多产品组合畅享IP库翻倍,可用IP超1亿 +
+
+
+
+
+
+ +
+
+ 全设备全协议支持 +
+
+ 支持安卓,iOS,电脑,windows,linux等系统。支持PPTP,L2TP,SSTP等协议 +
+
+
+
+
+
+ +
+
+ 用户独享宽带 +
+
+ 一号一拨绝不超拨,快速切换平均带宽6-10兆,最高可达50兆 +
+
+
+
+
+
+ +
+
+ 价低质优,免费测试 +
+
+ 全自营机房一手资源,价低质优,量大可联系客服获取最低价 +
+
+
+
+
+
+ +
+
+ 专属产品定制 +
+
+ 支持定制独立服务器,可针对特定的项目需求定制专用产品 +
+
+
+
+
+
+ +
+
+ 专业的服务团队 +
+
+ 资深售前售后1对1指导,7*24小时实时响应,竭诚为您服务 +
+
+
+
+ +
+
+
+ +
+ +
+ +
+ +
+ +
+

INFORMATION

+

资讯&帮助

+
+
+ + + + +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ +
+

旗下产品

+
    + @foreach (var item in Model.Where(m => m.Sort != 1000)) + { +
  • @item.Name
  • + } +
+
+
+
+

联系我们

+

企业电话:400 800 9925

+

工作时间:周一到周日8:00-24:00

+
+
+

商务合作

+

电话/微信:18039519517

+

QQ:508095081

+
+
+ +
+

+

copyright 2020 聚IP JUIP.COM 版权所有

+
+ + + + + + diff --git a/Host/Views.Mobile/LineList/Index.cshtml b/Host/Views.Mobile/LineList/Index.cshtml new file mode 100644 index 0000000..a2fd643 --- /dev/null +++ b/Host/Views.Mobile/LineList/Index.cshtml @@ -0,0 +1,172 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.Vpn.Service +@inject ProductService m_ProductService +@model List +@{ + var pid = this.Context.Request.GetInt("ProductId"); + var product = ViewData["products"] as List; + var currentProduct = (await m_ProductService.GetById(pid)) ?? new ProductEntity(); + var lineTotalCount = Model.Count; + var lineCount = Model.Where(m => m.Status == "正常").Count(); +} + +
+
+

+

实时总线路:@(lineTotalCount)条 实时可用线路:@(lineCount)条

+

所有线路均支持:【电脑/安卓/苹果】【PPTP/L2TP/SSTP】

+
+
+ +
+
+ + 直连教程 + +
+
+ @*

已购产品:老鹰b组

*@ +

线路表与账号必须为同一产品才能使用

+
+
+ +
+ +
+
    + @foreach (var item in product.Where(m => m.Id != 3 && m.Id != 7 && m.Id != 9)) + { +
  • @item.Name
  • + } +
+
+ +
+
+

+ + + +

+
+
+ +
+
+

L2TP密钥:@currentProduct.L2TPPwd

+

SSTP端口:@currentProduct.SSTPPort

+
+
+ 导出Excel +
+
+ +
+
+ 地区 +
+
+ 运营商 +
+
+ 服务器域名 +
+
+ 详情 +
+
+ +@foreach (var group in Model.GroupBy(m => m.Province)) +{ +

@group.Key

+ @foreach (var item in group) + { +
+
+ @item.City +
+
+ @item.Name +
+
+ @item.ServerUrl +
+
+ +
+
+ } +} + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
城市:
运营商:
服务器域名:
实时带宽:
IP量:
状态:
+
+ 返回列表 +
+
+ + + diff --git a/Host/Views.Mobile/Product/Index.cshtml b/Host/Views.Mobile/Product/Index.cshtml new file mode 100644 index 0000000..f5107cf --- /dev/null +++ b/Host/Views.Mobile/Product/Index.cshtml @@ -0,0 +1,95 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model List +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var pid = this.Context.Request.Query.ContainsKey("id") ? this.Context.Request.Query["id"].ToString() : ""; + var defaultProduct = Model.Select(m => m.Product).FirstOrDefault(); + if (pid == "") + { + pid = Model.Select(m => m.Product).FirstOrDefault().Id.ToString(); + } + else + { + defaultProduct = Model.Select(m => m.Product).FirstOrDefault(m => m.Id.ToString() == pid); + } + var defaultPackage = Model.Where(m => m.Product.Id == defaultProduct.Id).Select(m => m.Packages.FirstOrDefault()).FirstOrDefault(); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} +
+ +
+
+
+ +
+
+
+ @foreach (var item in Model) + { +
+

@item.Product.Name

+
    + @foreach (var str in item.Product.ContentLine) + { +
  • ·@str
  • + } +
+

+ 需求5个以上,可联系客服设置优惠价
+ 若之前享优惠价,请联系客服帮你改价 +

+ @foreach (var package in item.Packages.Where(m => m.Status == 1)) + { + if (package.IsTest == 1) + { + +
+
+

@package.Name

+

@(package.DayPrice)元/天

+

@package.Profile

+
+
+

¥@package.Price

+
+
+
+ } + else + { + +
+
+

@package.Name

+

@(package.DayPrice)元/天

+

@package.Profile

+
+
+

¥@package.Price

+
+
+
+ } + } +
+ } +
+
+
diff --git a/Host/Views.Mobile/Product/ReBuyIndex.cshtml b/Host/Views.Mobile/Product/ReBuyIndex.cshtml new file mode 100644 index 0000000..55a7146 --- /dev/null +++ b/Host/Views.Mobile/Product/ReBuyIndex.cshtml @@ -0,0 +1,60 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model ProductWithPackageResponse +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var defaultProduct = Model.Product; + var defaultPackage = Model.Packages.FirstOrDefault(); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} + +
+ +
+
+
+ +
+
+
+
+

@Model.Product.Name

+
    +

    ·不限速,网速最高可达50兆

    +

    ·支持手机,电脑,模拟器

    +

    ·200多个城市+全国混波量ip千万级

    +

    ·带宽6-10兆

    +

    ·断开再链接换ip

    +
+ @foreach (var package in Model.Packages.Where(m=>m.IsTest==0&&m.Status==1)) + { + +
+
+

@package.Name

+

@(package.DayPrice)元/天

+

@package.Profile

+
+
+

¥@package.Price

+
+
+
+ } +
+
+
+
\ No newline at end of file diff --git a/Host/Views.Mobile/Product/Soft.cshtml b/Host/Views.Mobile/Product/Soft.cshtml new file mode 100644 index 0000000..082eef3 --- /dev/null +++ b/Host/Views.Mobile/Product/Soft.cshtml @@ -0,0 +1,36 @@ +@using Hncore.Pass.Vpn.Domain +@using Microsoft.Extensions.Configuration +@inject IConfiguration m_Configuration +@model List +@{ + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} +
+
+
+
+ +
+
+

+

软件和账户必须为同一产品才能使用

+
+ +
+
+
+ + +
+ @foreach (var item in Model.Where(m=>m.Sort != 1000)) + { +
+ @*

*@ +

@item.Name

+

+
+ } +
\ No newline at end of file diff --git a/Host/Views.Mobile/Product/Test.cshtml b/Host/Views.Mobile/Product/Test.cshtml new file mode 100644 index 0000000..b7ea938 --- /dev/null +++ b/Host/Views.Mobile/Product/Test.cshtml @@ -0,0 +1,103 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Microsoft.Extensions.Configuration +@using Hncore.Infrastructure.Common +@model PackageInfoResponse +@inject IConfiguration m_Configuration +@inject Hncore.Pass.Vpn.Service.ProductAccountService m_AccountService +@{ + ViewData["Title"] = "购买产品"; + var t = this.Context.Request.GetInt("t"); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; + var randomPwd = ValidateCodeHelper.MakeNumCode(3).ToLower(); + var randomAccount = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + while (m_AccountService.Exist(m => m.Account == randomAccount)) + { + randomAccount = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + } +} + +
+

当前已选产品:

+
+
+
+

+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

@(Model.Package.DayPrice)元/天

+

@Model.Package.Profile

+
+
+ ¥ @Model.Package.Price +
+
+
+
+
+ *请确认好所需产品,买错产品换货将产生费用 +
+ +
+
+ +
+ PPTP账号前缀: +
+
+ PPTP账号密码: +
+

剩余试用次数:@(Model.RestTimes)

+

+

+ @if (Model.RestTimes > 0 && Model.Package.Status == 1) + { + + } + @if (Model.Package.Status == 0) + { + + 该产品暂不能测试 + + } +

+ + + +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views.Mobile/Product/buy.cshtml b/Host/Views.Mobile/Product/buy.cshtml new file mode 100644 index 0000000..45117de --- /dev/null +++ b/Host/Views.Mobile/Product/buy.cshtml @@ -0,0 +1,701 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@using Hncore.Infrastructure.Common +@model PackageInfoResponse +@inject UserService m_UserService +@inject Hncore.Pass.Vpn.Service.ProductAccountService m_AccountService +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + Hncore.Pass.BaseInfo.Models.User userEntity = new Hncore.Pass.BaseInfo.Models.User(); + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + userEntity = await m_UserService.GetById(user.Id); + } + var randomPwd = ValidateCodeHelper.MakeNumCode(3).ToLower(); + var randomAccount1 = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + while (m_AccountService.Exist(m => m.Account == randomAccount1)) + { + randomAccount1 = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + } + + var randomAccountMutil = ValidateCodeHelper.MakeCharCode(3).ToLower(); + + while (m_AccountService.Exist(m => m.Account.StartsWith(randomAccountMutil))) + { + randomAccountMutil = ValidateCodeHelper.MakeCharCode(3).ToLower(); + } +} + + + + + + +
+
+

当前已选产品:

+
+
+
+

+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

@(Model.Package.DayPrice)元/天

+

@Model.Package.Profile

+
+
+ ¥ @Model.Package.Price +
+
+
+
+
+ *请确认好所需产品,买错产品换货将产生费用 + @if (Model.Package.Name == "天卡") + { +

*天卡不支持退款,请谨慎购买

+ } +
+ +
+ +
+
+
+
+
+ 单个注册 +
+
+ 批量注册 +
+
+
+
+
+ PPTP账号前缀: +
+
+ +
+
+
+
+ PPTP账号密码: +
+
+ +
+
+
+
+ 连接数: +
+
+
+
+ - +
+
+ + @*{{OneBuyModel.ConnectCount}}*@ +
+
+ + +
+
+
+
+
+
+ 选择优惠券: +
+
+ +
+
+
+
+ 余额: +
+
+
+ 当前账户余额@(userEntity.RestAmount)元 + 前往充值 + +
+
+
+
+
+ 支付方式: +
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ 应付款: +
+
+ {{OneTotalAmount}}元 +
+
+ @*
+
+ 应付款: +
+
+ {{OnePayAmount}}元 +
+
*@ +

每隔30天淘宝下单可获得一张优惠券

+

{{Tip}}

+
+ +
+
+
+

批量注册的账号会使用【账号前缀】+【开始数】+【个数】顺序进行注册,

+

如:注册账号前缀为【user】开始数为【6】个数为【10】,则注册的账号为:user06,user07,user08,....user14

+
+
+ PPTP账号前缀: +
+
+ +
+
+
+
+ PPTP开始号: +
+
+ +
+
+
+
+ PPTP注册个数: +
+
+ +
+
+
+
+ PPTP账号密码: +
+
+ +
+
+
+
+ 连接数: +
+
+
+
+ - +
+
+ +
+
+ + +
+
+
+
+ @*超过10个请联系客服开通*@ +
+
+
+
+ 选择优惠券: +
+
+ +
+
+
+ +
+ 余额: +
+
+
+ 当前账户余额@(userEntity.RestAmount)元 + 前往充值 + +
+
+
+
+
+ 支付方式: +
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ 总金额: +
+
+ {{MoreTotalAmount}}元 +
+
+
+
+ 应付款: +
+
+ {{MorePayAmount}}元 +
+
+

每隔30天淘宝下单可获得一张优惠券

+

{{Tip}}

+
+ +
+
+
+ + + + + +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views.Mobile/Product/rebuy.cshtml b/Host/Views.Mobile/Product/rebuy.cshtml new file mode 100644 index 0000000..2710c7d --- /dev/null +++ b/Host/Views.Mobile/Product/rebuy.cshtml @@ -0,0 +1,328 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@model PackageInfoResponse +@inject UserService m_UserService +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + Hncore.Pass.BaseInfo.Models.User userEntity = new Hncore.Pass.BaseInfo.Models.User(); + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + userEntity = await m_UserService.GetById(user.Id); + } +} + + + + +
+
+

当前已选产品:

+
+
+
+

+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

@(Model.Package.DayPrice)元/天

+

@Model.Package.Profile

+
+
+ ¥ @Model.Package.Price +
+
+
+
+
+ *请确认好所需产品,买错产品换货将产生费用 +
+
+ +
+
+
+ +
+
+
+ 续费 +
+
+
+
+
+
+ PPTP产品账号: +
+
+ +
+
+ @*
+
+ PPTP账号密码: +
+
+ +
+
*@ +
+
+ 连接数: +
+
+
+
+ +
+
+ {{OneBuyModel.ConnectCount}} +
+
+ +
+
+
+
+
+
+ 选择优惠券: +
+
+ +
+
+
+
+ 余额抵扣: +
+
+
+ 当前账户余额@(userEntity.RestAmount)元 + @* + *@ +
+
+
+
+
+ 支付方式: +
+
+
+ + +
+
+ + +
+ +
+
+
+
+ 总金额: +
+
+ {{TotalAmount}}元 +
+
+
+
+ 应付款: +
+
+ {{PayAmount}}元 +
+
+

每隔30天淘宝下单可获得一张优惠券

+

{{Tip}}

+
+ +
+
+
+ +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views.Mobile/Shared/Components/Pager/Default.cshtml b/Host/Views.Mobile/Shared/Components/Pager/Default.cshtml new file mode 100644 index 0000000..9745100 --- /dev/null +++ b/Host/Views.Mobile/Shared/Components/Pager/Default.cshtml @@ -0,0 +1,35 @@ +@using Hncore.Infrastructure.Extension +@model ViewComponents.PagerModel +@{ + Model.PageIndex = Model.PageIndex == 0 ? 1 : Model.PageIndex; + var q = this.Context.Request.Remove("PageIndex"); + if (string.IsNullOrEmpty(q)) + { + q = "?"; + } + else + { + q += "&"; + } +} + +@if (Model.TotalPage > 1) +{ +
    + @if (Model.PageIndex > 1) + { + string href = $"{q}PageIndex={Model.PageIndex - 1}"; +
  • 上一页
  • + } + @for (var i = 1; i <= Model.TotalPage; i++) + { +
  • @i
  • + + } + @if (Model.PageIndex < Model.TotalPage) + { + string href = $"{q}PageIndex={Model.PageIndex + 1}"; +
  • 下一页
  • + } +
+} diff --git a/Host/Views.Mobile/Shared/Components/PayWait/Default.cshtml b/Host/Views.Mobile/Shared/Components/PayWait/Default.cshtml new file mode 100644 index 0000000..382f979 --- /dev/null +++ b/Host/Views.Mobile/Shared/Components/PayWait/Default.cshtml @@ -0,0 +1,79 @@ + + + + +
+ +
+ +
+
+
+ +

账号检测中请耐心等待

+
+
+ +
+
+
+ + diff --git a/Host/Views.Mobile/Shared/Components/RedirecctLogin/Default.cshtml b/Host/Views.Mobile/Shared/Components/RedirecctLogin/Default.cshtml new file mode 100644 index 0000000..a72670d --- /dev/null +++ b/Host/Views.Mobile/Shared/Components/RedirecctLogin/Default.cshtml @@ -0,0 +1,44 @@ + +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@using Hncore.Infrastructure.Common +@using Microsoft.Extensions.Configuration +@using Hncore.Infrastructure.Extension +@inject IConfiguration m_Configuration +@inject UserService m_UserService +@{ + var act = this.Context.Request.Get("act"); + var WxAppId = m_Configuration["WxApps:AppID"]; + var BaseUrl = m_Configuration["Service_BaseUrl"]; + var requestUrl =this.Context.Request.GetUrl().UrlEncode(); + UserLoginModel user = null; + Hncore.Pass.BaseInfo.Models.User userEntity = new Hncore.Pass.BaseInfo.Models.User(); + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + userEntity = await m_UserService.GetById(user.Id); + } +} + +@if (user == null) +{ + +} + diff --git a/Host/Views.Mobile/Shared/Error.cshtml b/Host/Views.Mobile/Shared/Error.cshtml new file mode 100644 index 0000000..4fa9d25 --- /dev/null +++ b/Host/Views.Mobile/Shared/Error.cshtml @@ -0,0 +1,25 @@ +@model ErrorViewModel +@{ + ViewData["Title"] = "Error"; +} + +

Error.

+

An error occurred while processing your request.

+ +@if (Model.ShowRequestId) +{ +

+ Request ID: @Model.RequestId +

+} + +

Development Mode

+

+ Swapping to Development environment will display more detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

diff --git a/Host/Views.Mobile/Shared/_CookieConsentPartial.cshtml b/Host/Views.Mobile/Shared/_CookieConsentPartial.cshtml new file mode 100644 index 0000000..d5ab6b6 --- /dev/null +++ b/Host/Views.Mobile/Shared/_CookieConsentPartial.cshtml @@ -0,0 +1,25 @@ +@using Microsoft.AspNetCore.Http.Features + +@{ + var consentFeature = Context.Features.Get(); + var showBanner = !consentFeature?.CanTrack ?? false; + var cookieString = consentFeature?.CreateConsentCookie(); +} + +@if (showBanner) +{ + + +} diff --git a/Host/Views.Mobile/Shared/_Layout.cshtml b/Host/Views.Mobile/Shared/_Layout.cshtml new file mode 100644 index 0000000..3587bfd --- /dev/null +++ b/Host/Views.Mobile/Shared/_Layout.cshtml @@ -0,0 +1,226 @@ +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.Vpn.Service +@inject ProductService m_ProductService +@{ + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } +} + + + + + + + + + + 聚IP JUIP.COM-产品购买 + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ +
+ +
+
+ + @RenderBody() + @RenderSection("Scripts", required: false) + + + + + diff --git a/Host/Views.Mobile/Shared/_UserLayout.cshtml b/Host/Views.Mobile/Shared/_UserLayout.cshtml new file mode 100644 index 0000000..5a24a88 --- /dev/null +++ b/Host/Views.Mobile/Shared/_UserLayout.cshtml @@ -0,0 +1,84 @@ +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.Vpn.Service +@inject ProductService m_ProductService +@{ + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } +} + + + + + + + + + + + 聚IP JUIP.COM-产品购买 + + + + + + + + + + + + + + + +
+ +
+
+
+ +
+
+ +
+
+ +
+
+ + @RenderBody() + @RenderSection("Scripts", required: false) + + diff --git a/Host/Views.Mobile/Shared/_ValidationScriptsPartial.cshtml b/Host/Views.Mobile/Shared/_ValidationScriptsPartial.cshtml new file mode 100644 index 0000000..cb4d75c --- /dev/null +++ b/Host/Views.Mobile/Shared/_ValidationScriptsPartial.cshtml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/Host/Views.Mobile/User/FindPwd.cshtml b/Host/Views.Mobile/User/FindPwd.cshtml new file mode 100644 index 0000000..482119a --- /dev/null +++ b/Host/Views.Mobile/User/FindPwd.cshtml @@ -0,0 +1,80 @@ +@using Home.Models +@model UserHomeModel +@{ + Layout = "_Layout"; +} + + +
+
+

+

找回密码

+
+ +
+

+

+

+
+

+

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

已有账号?立即登录

+
+ + \ No newline at end of file diff --git a/Host/Views.Mobile/User/Index.cshtml b/Host/Views.Mobile/User/Index.cshtml new file mode 100644 index 0000000..93ccc37 --- /dev/null +++ b/Host/Views.Mobile/User/Index.cshtml @@ -0,0 +1,19 @@ +@using Home.Models +@using Hncore.Pass.BaseInfo.Response +@model UserHomeModel +@{ + Layout = "_Layout"; +} + + + + + diff --git a/Host/Views.Mobile/User/IndexInfo.cshtml b/Host/Views.Mobile/User/IndexInfo.cshtml new file mode 100644 index 0000000..d426646 --- /dev/null +++ b/Host/Views.Mobile/User/IndexInfo.cshtml @@ -0,0 +1,361 @@ +@using Home.Models +@using Hncore.Pass.BaseInfo.Response +@model UserHomeModel +@{ + Layout = "_Layout"; +} + + +
+ +
账户信息
+
+
+ 用户名: +
+
+ @(Model.UserModel.Phone??Model.UserModel.LoginCode) +
+
+ 密码: +
+
+ ******** +
+
+ QQ: +
+
+ @(Model.UserModel.QQ??"--") +
+
+ 微信号: +
+
+ @(Model.UserModel.Wx??"--") +
+
+ 淘宝会员名: +
+
+ @(Model.UserModel.TaoBao??"--") +
+
+ 邮箱: +
+
+ @(Model.UserModel.Email??"--") +
+
+ +
余额
+
+
+ 余额: +
+
+ @Model.UserModel.RestAmount +
+
+ +
PPTV账号
+
+
+ 使用中: +
+
+ @(Model.AccountModel.TotalCount-Model.AccountModel.ExpriedCount) +
+
+ 总个数: +
+
+ @Model.AccountModel.TotalCount +
+
+ 已过期: +
+
+ @Model.AccountModel.ExpriedCount +
+
+ +
消费信息
+
+
+ 今日消费: +
+
+ @Model.Statistic.TodayExpend +
+
+ 今日退款: +
+
+ @Model.Statistic.TodayRefund +
+
+ 今日充值: +
+
+ @Model.Statistic.TodayCharege +
+
+ 当月消费: +
+
+ @Model.Statistic.MonthExpend +
+
+ 当月退款: +
+
+ @Model.Statistic.MonthRefund +
+
+ 当月充值: +
+
+ @Model.Statistic.MonthCharege +
+
+ 本年消费: +
+
+ @Model.Statistic.YearExpend +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + +
QQ:
微信号:
淘宝会员名:
邮箱:
+ +
+ + +
+
+
+ + +
+
+ + + + + + + + + + + + + +
原密码:
新密码:
确认新密码:
+ +
+ + +
+
+
+ + +
+
+ + + + + + + + + +
充值金额:
支付方式: + 支付宝支付
+ 微信支付 +
+ +
+ + +
+
+
+ + + + + + + + + diff --git a/Host/Views.Mobile/User/Login.cshtml b/Host/Views.Mobile/User/Login.cshtml new file mode 100644 index 0000000..a60c2f3 --- /dev/null +++ b/Host/Views.Mobile/User/Login.cshtml @@ -0,0 +1,73 @@ +@using Home.Models +@using Microsoft.Extensions.Configuration +@using Hncore.Infrastructure.Extension +@inject IConfiguration m_Configuration +@model UserHomeModel +@{ + Layout = "_Layout"; + var BaseUrl = m_Configuration["Service_BaseUrl"]; + var WxAppId = m_Configuration["WxApps:AppID"]; +} + + + +
+
+

+

用户登录

+

新用户免费赠送3次测试机会

+
+ +
+

+

+ +
+

@*自动登录*@忘记密码?

+

+

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

还没有账号?立即注册

+
+ + \ No newline at end of file diff --git a/Host/Views.Mobile/User/MyAccounts.cshtml b/Host/Views.Mobile/User/MyAccounts.cshtml new file mode 100644 index 0000000..10d9de5 --- /dev/null +++ b/Host/Views.Mobile/User/MyAccounts.cshtml @@ -0,0 +1,518 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model List +@{ + Layout = "_UserLayout"; +} +
+ @*
+ 为给您带来更好的服务体验,请完善QQ号和微信号 +
*@ +
+ +
+
+
+ 日期查询: +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + + + + + + + + @foreach (var item in Model) + { + + + + + + + } +
套餐账号操作
@item.ProductName/@item.PackageName@item.Account + + + + + +
+ @*
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
*@ + +
+ +
+ + +
+
+ + + + + +
+
+
+
+ 选择产品 +
+
+ +
+
+
+
+ 输入账号 +
+
+ +
+
+
+
+ 验证密码 +
+
+ +
+
+

认证账号

+
+
+ +
+
+ 选择产品 +
+
+ +
+
+
+
+ 账号前缀 +
+
+ +
+
+
+
+ 开始数 +
+
+ +
+
+
+
+ 认证个数 +
+
+ +
+
+
+
+ 验证密码 +
+
+ +
+
+

认证中,请耐心等待...

+

认证账号

+
+ +
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
用户:{{currentAccount.UserCode}}
产品:{{currentAccount.ProductName}}
套餐:{{currentAccount.PackageName}}
账号:{{currentAccount.Account}}
密码:{{currentAccount.Pwd}}
连接数:{{currentAccount.ConnectCount}}
开通时间:{{currentAccount.StartTime}}
到期时间:{{currentAccount.EndTime}}
剩余时间:{{currentAccount.RestTime}}
+
+ 返回列表 +
+
+ + +
+ + + + + + + diff --git a/Host/Views.Mobile/User/MyCoupons.cshtml b/Host/Views.Mobile/User/MyCoupons.cshtml new file mode 100644 index 0000000..0a6acc9 --- /dev/null +++ b/Host/Views.Mobile/User/MyCoupons.cshtml @@ -0,0 +1,68 @@ +@using Hncore.Pass.Sells.Model +@model List +@{ + Layout = "_UserLayout"; + Func format = (item) => + { + if (item.IsExpired) return "已过期"; + if (item.IsUsed) return "已使用"; + return "可使用"; + }; +} + + +
+ +
+ +@foreach (var item in Model) +{ + +
+ @if (item.Coupon.CouponType == ECouponType.Discount) + { +
+ @(item.Coupon.CouponValue)折 @format(item) +
+ } + @if (item.Coupon.CouponType == ECouponType.Minus) + { +
+ ¥@(item.Coupon.CouponValue)@format(item) +
+ } + +
+

@item.Coupon.Name

+

使用规则:@(item.Coupon.AllowMinAmount > 0 ? $"满{item.Coupon.AllowMinAmount}元可用" : "无限制")

+

有效时间:@(item.Orgin.StartTime.Value.ToString("yyyy.MM.dd"))至@(item.Orgin.EndTime.Value.ToString("yyyy.MM.dd"))

+

获取途径:@(item.Orgin.Remark)

+
+
+} + + + +@*
+
+ ¥6可使用 +
+
+

优惠券名称

+

使用规则:无限制

+

有效时间:2020.1.1至2020.3.1

+

获取途径:淘宝下单赠送

+
+
+
+
+ ¥6已使用 +
+
+

优惠券名称

+

使用规则:无限制

+

有效时间:2020.1.1至2020.3.1

+

获取途径:淘宝下单赠送

+
+
*@ + diff --git a/Host/Views.Mobile/User/MyOrders.cshtml b/Host/Views.Mobile/User/MyOrders.cshtml new file mode 100644 index 0000000..385a0c9 --- /dev/null +++ b/Host/Views.Mobile/User/MyOrders.cshtml @@ -0,0 +1,281 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + Layout = "_UserLayout"; + Func cut = word => + { + if (word.Length > 15) + return word.Substring(0, 15) + "..."; + return word; + }; +} + +
+
+
+ +
+
+
+ 日期查询: +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + + @foreach (var item in Model.List) + { + + + + + + + } +
类型产品套餐详情
@item.OrderType.GetEnumDisplayName()@item.ProductName@item.PackageName + +
+
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
日期:{{currentOrder.date}}
订单编号:{{currentOrder.orderno}}
类型:{{currentOrder.ordertype}}
产品:{{currentOrder.product}}
套餐:{{currentOrder.package}}
单价:{{currentOrder.price}}
总连接数:{{currentOrder.conncount}}
账号:{{currentOrder.account}}
订单金额:{{currentOrder.orderamount}}
优惠金额:{{currentOrder.couponamount}}
实付金额:{{currentOrder.payamount}}
+
+ 返回列表 +
+
+ +
+ + + + + + + + + + + + + diff --git a/Host/Views.Mobile/User/MyRefundOrders.cshtml b/Host/Views.Mobile/User/MyRefundOrders.cshtml new file mode 100644 index 0000000..4bdcc59 --- /dev/null +++ b/Host/Views.Mobile/User/MyRefundOrders.cshtml @@ -0,0 +1,271 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + Layout = "_UserLayout"; +} + +
+
+
+ +
+
+
+ 日期查询: +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + + @foreach (var item in Model.List) + { + + + + + + + } +
类型产品套餐详情
@item.OrderType.GetEnumDisplayName()@item.ProductName@item.PackageName + +
+
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
日期:{{currentOrder.date}}
订单编号:{{currentOrder.orderno}}
类型:{{currentOrder.ordertype}}
产品:{{currentOrder.product}}
套餐:{{currentOrder.package}}
总连接数:{{currentOrder.conncount}}
账号:{{currentOrder.account}}
退款单价:{{currentOrder.dayprice}}
退款时长:{{currentOrder.refundresttime}}
实付金额:{{currentOrder.paymentamount}}
退款金额:{{currentOrder.refundamount}}
+
+ 返回列表 +
+
+ +
+ + + + + diff --git a/Host/Views.Mobile/User/Online.cshtml b/Host/Views.Mobile/User/Online.cshtml new file mode 100644 index 0000000..56020eb --- /dev/null +++ b/Host/Views.Mobile/User/Online.cshtml @@ -0,0 +1,149 @@ +@using Home.Models +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Pass.Vpn.Model +@using Hncore.Infrastructure.Extension +@model List +@{ + Layout = "_Layout"; + var productId = this.Context.Request.GetInt("productId"); +} + + +
+ @if (Model.Count == 0) + { +
暂无数据
+ } + @foreach (var item in Model) + { +
#@(Model.IndexOf(item)+1)
+
+
+ 账号: +
+
+ @item.Account +
+
+ 登录时间: +
+
+ @item.LoginTime +
+
+ 在线时间: +
+
+ @item.OnlineTime +
+
+ 服务器Ip: +
+
+ @item.ServerIP +
+
+ 登录ip: +
+
+ @item.LoginIP +
+
+ 上/下行: +
+
+ @item.UpStream / @item.UpStream +
+
+ } + +
+ + + + + diff --git a/Host/Views.Mobile/User/Regist.cshtml b/Host/Views.Mobile/User/Regist.cshtml new file mode 100644 index 0000000..84021df --- /dev/null +++ b/Host/Views.Mobile/User/Regist.cshtml @@ -0,0 +1,97 @@ +@using Home.Models +@using Microsoft.Extensions.Configuration +@using Hncore.Infrastructure.Extension +@inject IConfiguration m_Configuration +@model UserHomeModel +@{ + Layout = "_Layout"; + var BaseUrl = m_Configuration["Service_BaseUrl"]; + var WxAppId = m_Configuration["WxApps:AppID"]; +} + + +
+
+

+

用户注册

+

新用户免费赠送3次测试机会

+
+ +
+

+

+

+

+

+
+

我同意《聚IP JUIP.COM用户注册协议》

+

+

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

已有账号?立即登录

+
+ + \ No newline at end of file diff --git a/Host/Views.Mobile/_ViewImports.cshtml b/Host/Views.Mobile/_ViewImports.cshtml new file mode 100644 index 0000000..a31b6e6 --- /dev/null +++ b/Host/Views.Mobile/_ViewImports.cshtml @@ -0,0 +1,4 @@ +@using Home +@using Home.Models +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Host diff --git a/Host/Views.Mobile/_ViewStart.cshtml b/Host/Views.Mobile/_ViewStart.cshtml new file mode 100644 index 0000000..6e88aa3 --- /dev/null +++ b/Host/Views.Mobile/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +} diff --git a/Host/Views/Article/Index.cshtml b/Host/Views/Article/Index.cshtml new file mode 100644 index 0000000..b164942 --- /dev/null +++ b/Host/Views/Article/Index.cshtml @@ -0,0 +1,141 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Data +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + var type = this.Context.Request.GetInt("Catalog"); +} +
+
+
+
+
+ +
+
+ +

搜索热词:账号无法登录如何充值

+
+
+ +
+
+
+
+
+ +
+
+
+
+

+

苹果手机教程

+
+
+

+

安卓手机教程

+
+
+

+

安卓模拟器教程

+
+
+

+

Windows电脑教程

+
+
+ +
+ +
+
+
    + @foreach (var item in Model.List) + { +
  • +
    +
    + @item.Title +
    +
    + @item.CreateTime.ToString("yyyy.MM.dd") +
    +
    +

    @item.SubTitle

    +

    查看全文→

    +
  • + } + + @*
  • +
    +
    + 如何查看IP代理地址是否启动成功? +
    +
    + 2020.1.1 +
    +
    +

    概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字

    +

    查看全文→

    +
  • +
  • +
    +
    + 如何查看IP代理地址是否启动成功? +
    +
    + 2020.1.1 +
    +
    +

    概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字

    +

    查看全文→

    +
  • +
  • +
    +
    + 如何查看IP代理地址是否启动成功? +
    +
    + 2020.1.1 +
    +
    +

    概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字

    +

    查看全文→

    +
  • +
  • +
    +
    + 如何查看IP代理地址是否启动成功? +
    +
    + 2020.1.1 +
    +
    +

    概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字概要文字

    +

    查看全文→

    +
  • *@ +
+
+
+ +
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) + @**@ +
+
+
+
\ No newline at end of file diff --git a/Host/Views/Article/Search.cshtml b/Host/Views/Article/Search.cshtml new file mode 100644 index 0000000..8e81dee --- /dev/null +++ b/Host/Views/Article/Search.cshtml @@ -0,0 +1,77 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Data +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + var type = this.Context.Request.GetInt("Catalog"); +} +
+
+
+
+
+ +
+
+ +

搜索热词:账号无法登录如何充值

+
+
+ +
+
+
+
+
+ +
+
+
+
+

+

苹果手机教程

+
+
+

+

安卓手机教程

+
+
+

+

安卓模拟器教程

+
+
+

+

Windows电脑教程

+
+
+ +
+
+
+
    + @foreach (var item in Model.List) + { +
  • +
    +
    + @item.Title +
    +
    + @item.CreateTime.ToString("yyyy.MM.dd") +
    +
    +

    @item.SubTitle

    +

    查看全文→

    +
  • + } +
+
+
+ +
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
+
+
+
\ No newline at end of file diff --git a/Host/Views/Article/info.cshtml b/Host/Views/Article/info.cshtml new file mode 100644 index 0000000..32f4ed7 --- /dev/null +++ b/Host/Views/Article/info.cshtml @@ -0,0 +1,59 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@model ArticleInfoMode +@{ + +} + +
+
+
+
+
+ +
+
+ +

搜索热词:账号无法登录如何充值

+
+
+ +
+
+
+
+
+ +
+
+ +
+
+

@Model.Info.Title

+

@Model.Info.CreateTime.ToString("yyyy.MM.dd")

+
+
+ @**@ + @Html.Raw(Model.Info.Content) +
+
+
+ @if (Model.Prev != null) + { +
+ 上一条:@Model.Prev.Title +
+ } + @if (Model.Next != null) + { +
+ 下一条:@Model.Next.Title +
+ } + +
+
+
diff --git a/Host/Views/Article/taobao.cshtml b/Host/Views/Article/taobao.cshtml new file mode 100644 index 0000000..f12f7bf --- /dev/null +++ b/Host/Views/Article/taobao.cshtml @@ -0,0 +1,34 @@ + +
+ +
+ +
+

您付款后并未直接开通账号,因系统无法判定您是新开账号还是续费,也无法判定您想定制什么账号和密码。

+

所以会把您付款金额充进官网,然后在官网新开账号或是续费,用余额支付即可。

+

当然您也可以付款后联系我们帮您开通或续费。

+
+ +
+ +
+ +
+ ——以下店铺任选一个,在淘宝所需金额,系统将自动为您充值,下单时收货人的手机号要与官网会员号一致—— +
+
+ +
\ No newline at end of file diff --git a/Host/Views/Home/Index.cshtml b/Host/Views/Home/Index.cshtml new file mode 100644 index 0000000..d08f0e3 --- /dev/null +++ b/Host/Views/Home/Index.cshtml @@ -0,0 +1,814 @@ +@model List +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer +@using Hncore.Pass.Vpn.Service +@using Hncore.Pass.Vpn.Domain +@using Microsoft.Extensions.Configuration +@inject ArticleService m_ArticleService +@inject IConfiguration m_Configuration +@{ + ViewData["Title"] = "聚IP JUIP.COM-千万动态ip切换,自建机房ip代理覆盖全国,多款市面热销产品"; + Layout = null; + + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + + var articleNews = await m_ArticleService.GetTop(12, ArticleCatalog.Top); + var activityNews = await m_ArticleService.GetTop(12, ArticleCatalog.Activity); + var helpsNews = await m_ArticleService.GetTop(12, ArticleCatalog.Help); + var QANews = await m_ArticleService.GetTop(12, ArticleCatalog.QA); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; + //var epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000)/10000000; + + //var countStr = epoch.ToString().Substring(0, 8); +} + + + + + + 聚IP JUIP.COM-千万动态ip切换,自建机房ip代理覆盖全国,多款市面热销产品 + + + + + + + + + + + + + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

我同意聚IP JUIP.COM用户注册协议

+

+

已有账号?立即登录

+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ @*
+ 自动登录 +
*@ + +
+

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

+

还没有账号?立即注册

+
+ + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

+

已有账号?立即登录

+
+ + + + + + + +
+

+ + 我们的产品 +

+

冰点价格,开通后任何问题可无理由退款

+

温馨提示:在国外,香港,台湾,澳门,城市使用不稳定;移动网络,长城宽带以及校园网使用会不稳定,因此不建议亲使用哦

+
+ +
+
+ + + @*
+
+ @foreach (var item in Model.Where(m => m.Sort != 1000)) + { +
+

+

@item.Name

+

@item.Profile

+

查看线路表→

+

+
+ } +
+ +
+
+
*@ + + +
+
+ +
+
+

+ + 我们的优势 +

+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ @*
*@ +
+
+
+ @*
*@ +
+
+
+ @*
*@ +
+
+
+ @*
*@ +
+
+
+ @*
*@ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ + 全国覆盖范围地图 +

+

+
+
+ 今日IP连接数: +
+
+
+
+
+
+
+
+ +
+ +
+ +

这些人正在使用IP代理

+
+
+ +
+
+ +
+

+ + 资讯&帮助 +

+
+ + + + + +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + + +
+
+

+ 聚IP仅提供IP服务,用户使用聚IP从事的任何行为均不代表聚IP的意志和观点,与聚IP的立场无关。严禁用户使用聚IP从事任何违法犯罪行为, + 产生的相关责任用户自负,对此聚IP不承担任何法律责任。 +

+

+ 版权所有 河南华连网络科技有限公司|豫ICP备17004061号-15|增值电信业务经营许可证:B1-20190663 +

+

+
+
+ + + + + + + + diff --git a/Host/Views/Home/test.cshtml b/Host/Views/Home/test.cshtml new file mode 100644 index 0000000..2d5defd --- /dev/null +++ b/Host/Views/Home/test.cshtml @@ -0,0 +1,8 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@using Hncore.Infrastructure.Common + + diff --git a/Host/Views/LineList/Index.cshtml b/Host/Views/LineList/Index.cshtml new file mode 100644 index 0000000..fef8d4c --- /dev/null +++ b/Host/Views/LineList/Index.cshtml @@ -0,0 +1,133 @@ +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.Vpn.Service +@inject ProductService m_ProductService +@model List +@{ + var pid = this.Context.Request.GetInt("ProductId"); + var product = ViewData["products"] as List; + var currentProduct =(await m_ProductService.GetById(pid)) ?? new ProductEntity(); + + var lineTotalCount = Model.Count; + var lineCount = Model.Where(m=>m.Status== "正常").Count(); +} + +
+
+
+
+
+ +
+
+ +
+
+ +
+ +
+
+
+
+ +
+
+

实时总线路:@(lineTotalCount)条实时可用线路:@(lineCount)条 所有线路均支持:【电脑/安卓/苹果】【PPTP/L2TP/SSTP】

+
+
+
+
+ +
+

*线路表和账号必须为同一产品才能使用。@*(已购产品:老鹰b组)*@

+
+ @foreach (var item in product.Where(m => m.Id != 3 && m.Id != 7 && m.Id != 9)) + { +
+ @item.Name +
+ } +
+
+ +
+
+
+

L2TP密钥:@currentProduct.L2TPPwd

+

SSTP端口:@currentProduct.SSTPPort

+
+
+ 搜索范围:@currentProduct.Name +
+
+
+ + + + 导出Excel +
+ +
+
+
+ +
+ + + + + + + + + + + + @foreach (var group in Model.GroupBy(m => m.Province)) + { + + @foreach (var item in group) + { + + + + + + + + + + + } + } + + +
产品城市 运营商 服务器域名 实时带宽 IP量 状态 线路说明
@group.Key
@item.ProductName@item.City@item.Name@item.ServerUrl@item.BandWidth@item.IpRemark@item.Status评分★★★★★
+
+ diff --git a/Host/Views/Product/Index - 副本 (2).cshtml b/Host/Views/Product/Index - 副本 (2).cshtml new file mode 100644 index 0000000..874f7ad --- /dev/null +++ b/Host/Views/Product/Index - 副本 (2).cshtml @@ -0,0 +1,292 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model List +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var pid = this.Context.Request.Query.ContainsKey("id") ? this.Context.Request.Query["id"].ToString() : ""; + var defaultProduct = Model.Select(m => m.Product).FirstOrDefault(); + if (pid == "") + { + pid = Model.Select(m => m.Product).FirstOrDefault().Id.ToString(); + } + else + { + defaultProduct = Model.Select(m => m.Product).FirstOrDefault(m => m.Id.ToString() == pid); + } + + var productPackages = Model.Where(m => m.Product.Id == defaultProduct.Id).FirstOrDefault().Packages.Where(p => p.Status == 1 && p.IsTest == 0);//.Select(m => m.Packages.Where(p => p.Status == 1 && p.IsTest == 0).FirstOrDefault()); + + var defaultPackage = productPackages.FirstOrDefault();// Model.Where(m => m.Product.Id == defaultProduct.Id).Select(m => m.Packages.FirstOrDefault()).FirstOrDefault(); + + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} + + +
+ +
+@*新布局*@ +

+
+
+ + +
+
+
+ @foreach (var item in Model) + { +
+
+
+
+
+ @**@ +

@item.Product.Name

+
+
+
+

@item.Product.Name

+ @foreach (var str in item.Product.ContentLine) + { +

·@str

+ } +
+
+ @if (user == null) + { +

+

+ } + else + { +

+ +

+

+ +

+ } + + +
+
+
+

@item.Product.Name

+
+ @foreach (var package in item.Packages.Where(m => m.IsTest == 0 && m.Status == 1)) + { +
+

@package.Name

+

@package.Price

+

原价:@package.LinePrice

+

@(package.DayPrice)元/天

+

@package.Profile

+ +
+ } +
+

需求5个以上,可以联系客服设置优惠价

+

温馨提示:若您之前享优惠价,请联系客服帮你改价哦

+ + @if (user == null) + { +

+ } + else + { +

+ } +
+ } + +
+
+
+
+ + +@section Scripts{ + + + @**@ +} \ No newline at end of file diff --git a/Host/Views/Product/Index - 副本.cshtml b/Host/Views/Product/Index - 副本.cshtml new file mode 100644 index 0000000..f32cf0f --- /dev/null +++ b/Host/Views/Product/Index - 副本.cshtml @@ -0,0 +1,197 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model List +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var pid = this.Context.Request.Query.ContainsKey("id") ? this.Context.Request.Query["id"].ToString() : ""; + var defaultProduct = Model.Select(m => m.Product).FirstOrDefault(); + if (pid == "") + { + pid = Model.Select(m => m.Product).FirstOrDefault().Id.ToString(); + } + else + { + defaultProduct = Model.Select(m => m.Product).FirstOrDefault(m => m.Id.ToString() == pid); + } + + var productPackages = Model.Where(m => m.Product.Id == defaultProduct.Id).FirstOrDefault().Packages.Where(p=>p.Status == 1 && p.IsTest == 0);//.Select(m => m.Packages.Where(p => p.Status == 1 && p.IsTest == 0).FirstOrDefault()); + + var defaultPackage = productPackages.FirstOrDefault();// Model.Where(m => m.Product.Id == defaultProduct.Id).Select(m => m.Packages.FirstOrDefault()).FirstOrDefault(); + + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} + +
+ +
+ +
+

+
+ + @foreach (var item in Model) + { +
+

+

@item.Product.Name

+ +
+ } + +
+
+ + +@foreach (var item in Model) +{ +
+
+
+
+
+ +

@item.Product.Name

+
+
+
+

@item.Product.Name

+ @foreach (var str in item.Product.ContentLine) + { +

·@str

+ } + @*

·不限速,网速最高可达50兆

+

·支持手机,电脑,模拟器

+

·200多个城市+全国混波量ip千万级

+

·带宽6-10兆

+

·断开再链接换ip

*@ +
+
+ @if (user == null) + { +

+

+ } + else + { +

+ +

+

+ +

+ } + + +
+
+
+

@item.Product.Name

+
+ @foreach (var package in item.Packages.Where(m => m.IsTest == 0 && m.Status == 1)) + { +
+

@package.Name

+

@package.Price

+

原价:@package.LinePrice

+

@(package.DayPrice)元/天

+

@package.Profile

+ +
+ } +
+

需求5个以上,可以联系客服设置优惠价

+

温馨提示:若您之前享优惠价,请联系客服帮你改价哦

+ + @if (user == null) + { +

+ } + else + { +

+ } +
+} + +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views/Product/Index.cshtml b/Host/Views/Product/Index.cshtml new file mode 100644 index 0000000..6f54672 --- /dev/null +++ b/Host/Views/Product/Index.cshtml @@ -0,0 +1,308 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model List +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var pid = this.Context.Request.Query.ContainsKey("id") ? this.Context.Request.Query["id"].ToString() : ""; + var defaultProduct = Model.Select(m => m.Product).FirstOrDefault(); + if (pid == "") + { + pid = Model.Select(m => m.Product).FirstOrDefault().Id.ToString(); + } + else + { + defaultProduct = Model.Select(m => m.Product).FirstOrDefault(m => m.Id.ToString() == pid); + } + + var productPackages = Model.Where(m => m.Product.Id == defaultProduct.Id).FirstOrDefault().Packages.Where(p => p.Status == 1 && p.IsTest == 0);//.Select(m => m.Packages.Where(p => p.Status == 1 && p.IsTest == 0).FirstOrDefault()); + + var defaultPackage = productPackages.FirstOrDefault();// Model.Where(m => m.Product.Id == defaultProduct.Id).Select(m => m.Packages.FirstOrDefault()).FirstOrDefault(); + + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} + + +
+ +
+@*新布局*@ +

+
+
+ + +
+
+
+ @foreach (var item in Model) + { +
+
+ +
+
+

@item.Product.Name

+

@(string.Join("|",item.Packages.Select(m=>m.Name)))

+
+
+ @foreach (var str in item.Product.ContentLine) + { +

@str

+ } +
+ @if (user == null) + { + + + } + else + { + + + + + + } + + +
+
+
+
+ @*

@item.Product.Name

*@ +
+ @foreach (var package in item.Packages.Where(m => m.IsTest == 0 && m.Status == 1)) + { +
+ +

@package.Price

+

原价:@package.LinePrice

+

@(package.DayPrice)元/天

+
+

@package.Name

+

@package.Profile

+
+ +
+ } +
+
+

温馨提示:需求5个以上,可以联系客服设置优惠价;若您之前享优惠价,请联系客服帮你改价哦;开通后有任何问题可无理由退款

+ +
+ + + @if (user == null) + { +

+ } + else + { +

+ } +
+ } + +
+
+
+
+ + +@section Scripts{ + + + @**@ +} \ No newline at end of file diff --git a/Host/Views/Product/ReBuyIndex.cshtml b/Host/Views/Product/ReBuyIndex.cshtml new file mode 100644 index 0000000..e868c32 --- /dev/null +++ b/Host/Views/Product/ReBuyIndex.cshtml @@ -0,0 +1,132 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Microsoft.Extensions.Configuration +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@inject IConfiguration m_Configuration +@model ProductWithPackageResponse +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var defaultProduct = Model.Product; + var defaultPackage = Model.Packages.FirstOrDefault(); + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} + + +
+ +
+ +
+
+
+
+

@defaultProduct.Name

+
+
+

@defaultProduct.Name

+ @foreach (var str in defaultProduct.ContentLine) + { +

@str

+ } + +
+
+
+
+ @foreach (var package in Model.Packages.Where(m => m.IsTest == 0 && m.Status == 1)) + { +
+ +

@package.Price

+

原价:@package.LinePrice

+

@(package.DayPrice)元/天

+
+

@package.Name

+

@package.Profile

+
+ +
+ } +
+
+

温馨提示:需求5个以上,可以联系客服设置优惠价;若您之前享优惠价,请联系客服帮你改价哦;开通后有任何问题可无理由退款

+ +
+ @if (user == null) + { +

+ } + else + { +

+ } +
+ +@if(!string.IsNullOrWhiteSpace(ViewBag.errorTip)) +{ + +} + +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views/Product/Soft.cshtml b/Host/Views/Product/Soft.cshtml new file mode 100644 index 0000000..135c9a1 --- /dev/null +++ b/Host/Views/Product/Soft.cshtml @@ -0,0 +1,50 @@ +@using Hncore.Pass.Vpn.Domain +@using Microsoft.Extensions.Configuration +@inject IConfiguration m_Configuration +@model List +@{ + var baseUrl = m_Configuration["BaseInfoUrl"]; + Func P = (path) => $"{baseUrl}{path}"; +} +
+
+
+
+ +
+
+

+

软件和账户必须为同一产品才能使用

+
+ +
+
+
+ +
+
+ @foreach (var item in Model.Where(m=>m.Sort!=1000)) + { +
+
+
+ @item.Name +
+ + + @if (item.Id != 3 && item.Id != 7 && item.Id != 9 && item.Id != 12) + { + + } +

免安装,下载后直接打开

+
+
+ } +
+
\ No newline at end of file diff --git a/Host/Views/Product/Test.cshtml b/Host/Views/Product/Test.cshtml new file mode 100644 index 0000000..df75a95 --- /dev/null +++ b/Host/Views/Product/Test.cshtml @@ -0,0 +1,128 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Infrastructure.Common +@model PackageInfoResponse +@inject Hncore.Pass.Vpn.Service.ProductAccountService m_AccountService +@{ + ViewData["Title"] = "领取试用"; + var t = this.Context.Request.GetInt("t"); + var randomPwd = ValidateCodeHelper.MakeNumCode(3).ToLower(); + var randomAccount = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + while (m_AccountService.Exist(m => m.Account == randomAccount)) + { + randomAccount = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + } +} + + + +
+
+
+
+ 当前已选产品: +
+
+
+ @*
+

+

@Model.Product.Name

+
*@ +
+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

0元

+

@Model.Package.Profile

+ +
+
+

@Model.Package.Price

+
+
+

*请务必选好所需商品,换货会产生费用

+
+ +
+
+
+ + +
+
+
+

PPTP账号名称:

+

PPTP账号密码:

+
+
+

+

+
+
+ 剩余试用次数@(Model.RestTimes) +
+
+ +
+
+ @if (Model.RestTimes > 0 && Model.Package.Status == 1) + { + + } + @if (Model.Package.Status == 0) + { + + 该产品暂不能测试 + + } +
+
+ +
+ @*
+

*此用户名重复,请重新输入

+
*@ +
+ +
+ +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views/Product/buy.cshtml b/Host/Views/Product/buy.cshtml new file mode 100644 index 0000000..2436536 --- /dev/null +++ b/Host/Views/Product/buy.cshtml @@ -0,0 +1,744 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@using Hncore.Infrastructure.Common + +@model PackageInfoResponse +@inject UserService m_UserService +@inject Hncore.Pass.Vpn.Service.ProductAccountService m_AccountService +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + Hncore.Pass.BaseInfo.Models.User userEntity = new Hncore.Pass.BaseInfo.Models.User(); + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + userEntity = await m_UserService.GetById(user.Id); + } + + var randomPwd = ValidateCodeHelper.MakeNumCode(3).ToLower(); + var randomAccount1 = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + + while (m_AccountService.Exist(m => m.Account == randomAccount1)) { + randomAccount1 = ValidateCodeHelper.MakeCharCode(2).ToLower() + ValidateCodeHelper.MakeNumCode(4).ToLower(); + } + + var randomAccountMutil = ValidateCodeHelper.MakeCharCode(3).ToLower(); + + while (m_AccountService.Exist(m =>m.Account.StartsWith(randomAccountMutil))) + { + randomAccountMutil = ValidateCodeHelper.MakeCharCode(3).ToLower(); + } +} + + + + +
+
+
+
+ 当前已选产品: +
+
+
+
+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

@(Model.Package.DayPrice)元/天

+

@Model.Package.Profile

+ +
+
+

@Model.Package.Price

+
+
+

*请务必选好所需商品,换货会产生费用

+ @if (Model.Package.Name == "天卡") + { +

*天卡不支持退款,请谨慎购买

+ } +
+ +
+
+
+ +
+ +
+
+
+ 单个注册 +
+
+ 批量注册 +
+
+
+
+
+ + +
+
+ PPTP产品账号: +
+
+ +

5至10位字母或数字或组合

+
+
+ 5至10位字母或数字或组合 +
+
+
+
+ PPTP产品密码: +
+
+ +

2至10位字母或数字或组合

+
+
+ 2至10位字母或数字或组合 +
+
+
+
+ 连接数: +
+
+
+ +
+ - +
+
+ +
+
+ + +
+
+
+
+ 可同时在线的设备数 +
+
+
+
+ 选择优惠券: +
+
+ +
+
+ 每隔30天淘宝下单可获得一张优惠券 +
+
+
+
+ 余额: +
+
+ 当前账户余额@(userEntity.RestAmount)元 + 前往充值 +
+
+ +
+
+
+
+ 支付方式: +
+
+ + + + +
+
+ +
+
+
+
+ 应付款: +
+
+ {{OneTotalAmount}}元 +
+
+ +
+
+ @*
+
+ 应付款: +
+
+ {{OnePayAmount}}元 +
+
+ +
+
*@ +

{{Tip}}

+

+ +
+
+ +
+
+

批量注册的账号会使用【账号前缀】+【开始数】+【个数】顺序进行注册,

+

如:注册账号前缀为【user】开始数为【6】个数为【10】,则注册的账号为:user06,user07,user08,....user14

+
+
+ PPTP账号前缀: +
+
+ +

3至8位字母或数字或组合

+
+
+ 3至8位字母或数字或组合 +
+
+
+
+ 开始号: +
+
+ +
+
+ 本批次账号的起始账号的尾数 +
+
+
+
+ 注册个数: +
+
+ +

一次最多注册500个

+
+
+ 本批次的账号个数 +
+
+
+
+ PPTP产品密码: +
+
+ +

2至10位字母或数字或组合

+
+
+ 2至10位字母或数字或组合 +
+
+
+
+ 连接数: +
+
+
+ +
+ - +
+
+ +
+
+ + +
+
+
+
+ 可同时在线的设备数 +
+
+
+
+ 选择优惠券: +
+
+ +
+
+ 每隔30天淘宝下单可获得一张优惠券 +
+
+
+
+ 余额: +
+
+ 当前账户余额@(userEntity.RestAmount)元 + 前往充值 +
+
+ +
+
+
+
+ 支付方式: +
+
+ + + + +
+
+ +
+
+
+
+ 应付款 +
+
+ {{MoreTotalAmount}}元 +
+
+ +
+
+ @*
+
+ 应付款: +
+
+ {{MorePayAmount}}元 +
+
+ +
+
*@ +

{{Tip}}

+

+
+
+ +
+
+ +

微信支付 | 收银台

+
+
+ @*

订单将在25分钟后关闭,请及时付款

*@ +

+ @**@ +

+

+ @*

二维码已经失效,请刷新后重新扫码支付

*@ +
+
+

新开订单

+

¥{{OrderInfo.OtherPayAmount}}

+

收款方:聚IP

+

下单时间:{{OrderInfo.CreateTime}}

+

订单号:{{OrderInfo.OrderNo}}

+
+
+
+
+ + + +
+ +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views/Product/rebuy.cshtml b/Host/Views/Product/rebuy.cshtml new file mode 100644 index 0000000..5deb5d3 --- /dev/null +++ b/Host/Views/Product/rebuy.cshtml @@ -0,0 +1,376 @@ +@using Hncore.Pass.Vpn.Response.Product +@using Hncore.Infrastructure.Extension +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.BaseInfo.Service +@model PackageInfoResponse +@inject UserService m_UserService +@{ + ViewData["Title"] = "购买产品"; + UserLoginModel user = null; + Hncore.Pass.BaseInfo.Models.User userEntity = new Hncore.Pass.BaseInfo.Models.User(); + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + userEntity = await m_UserService.GetById(user.Id); + } +} + + + + +
+
+
+
+ 当前已选产品: +
+
+
+
+

@Model.Product.Name

+
+
+

@Model.Package.Name

+

@(Model.Package.DayPrice)元/天

+

@Model.Package.Profile

+ +
+
+

@Model.Package.Price

+
+
+

*请务必选好所需商品,换货会产生费用

+
+ +
+
+
+ +
+ +
+
+
+ 续费 +
+
+
+
+
+ + +
+
+ PPTP产品账号: +
+
+ +

+
+
+ 支持10位以内字母,数字 +
+
+ @*
+
+ PPTP产品密码: +
+
+ +
+
+ 支持6位以内字母,数字 +
+
*@ +
+
+ 连接数: +
+
+
+
+ {{OneBuyModel.ConnectCount}} +
+
+
+
+ +
+
+
+
+ 选择优惠券: +
+
+ +
+
+ 每隔30天淘宝下单可获得一张优惠券 +
+
+
+
+ 余额抵扣: +
+
+ 使用余额抵扣,当前账户余额@(userEntity.RestAmount)元 +
+
+ +
+
+
+
+ 支付方式: +
+
+ 支付宝支付 + 微信支付 + +
+
+ +
+
+
+
+ 总金额: +
+
+ {{TotalAmount}}元 +
+
+ +
+
+
+
+ 应付款: +
+
+ {{PayAmount}}元 +
+
+ +
+
+

{{Tip}}

+

+ +
+
+ + +
+
+ +

微信支付 | 收银台

+
+
+ @*

订单将在25分钟后关闭,请及时付款

*@ +

+ @**@ +

+

+ @*

二维码已经失效,请刷新后重新扫码支付

*@ +
+
+

新开订单

+

¥{{OrderInfo.OtherPayAmount}}

+

收款方:聚IP

+

下单时间:{{OrderInfo.CreateTime}}

+

订单号:{{OrderInfo.OrderNo}}

+
+
+
+
+ + + +
+ +@section Scripts{ + +} \ No newline at end of file diff --git a/Host/Views/Shared/Components/Pager/Default.cshtml b/Host/Views/Shared/Components/Pager/Default.cshtml new file mode 100644 index 0000000..a660668 --- /dev/null +++ b/Host/Views/Shared/Components/Pager/Default.cshtml @@ -0,0 +1,35 @@ +@using Hncore.Infrastructure.Extension +@model ViewComponents.PagerModel +@{ + Model.PageIndex= Model.PageIndex == 0 ? 1 : Model.PageIndex; + var q = this.Context.Request.Remove("PageIndex"); + if (string.IsNullOrEmpty(q)) + { + q = "?"; + } + else + { + q = "?"+ q + "&"; + } +} + +@if (Model.TotalPage > 1) +{ +
    + @if (Model.PageIndex > 1) + { + string href = $"{q}PageIndex={Model.PageIndex - 1}"; +
  • 上一页
  • + } + @for (var i = 1; i <= Model.TotalPage; i++) + { +
  • @i
  • + + } + @if (Model.PageIndex < Model.TotalPage) + { + string href = $"{q}PageIndex={Model.PageIndex + 1}"; +
  • 下一页
  • + } +
+} diff --git a/Host/Views/Shared/Components/PayOk/Default.cshtml b/Host/Views/Shared/Components/PayOk/Default.cshtml new file mode 100644 index 0000000..1c5ad6f --- /dev/null +++ b/Host/Views/Shared/Components/PayOk/Default.cshtml @@ -0,0 +1,68 @@ + + + + +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + diff --git a/Host/Views/Shared/Components/PayWait/Default.cshtml b/Host/Views/Shared/Components/PayWait/Default.cshtml new file mode 100644 index 0000000..382f979 --- /dev/null +++ b/Host/Views/Shared/Components/PayWait/Default.cshtml @@ -0,0 +1,79 @@ + + + + +
+ +
+ +
+
+
+ +

账号检测中请耐心等待

+
+
+ +
+
+
+ + diff --git a/Host/Views/Shared/Error.cshtml b/Host/Views/Shared/Error.cshtml new file mode 100644 index 0000000..4fa9d25 --- /dev/null +++ b/Host/Views/Shared/Error.cshtml @@ -0,0 +1,25 @@ +@model ErrorViewModel +@{ + ViewData["Title"] = "Error"; +} + +

Error.

+

An error occurred while processing your request.

+ +@if (Model.ShowRequestId) +{ +

+ Request ID: @Model.RequestId +

+} + +

Development Mode

+

+ Swapping to Development environment will display more detailed information about the error that occurred. +

+

+ The Development environment shouldn't be enabled for deployed applications. + It can result in displaying sensitive information from exceptions to end users. + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + and restarting the app. +

diff --git a/Host/Views/Shared/_CookieConsentPartial.cshtml b/Host/Views/Shared/_CookieConsentPartial.cshtml new file mode 100644 index 0000000..d5ab6b6 --- /dev/null +++ b/Host/Views/Shared/_CookieConsentPartial.cshtml @@ -0,0 +1,25 @@ +@using Microsoft.AspNetCore.Http.Features + +@{ + var consentFeature = Context.Features.Get(); + var showBanner = !consentFeature?.CanTrack ?? false; + var cookieString = consentFeature?.CreateConsentCookie(); +} + +@if (showBanner) +{ + + +} diff --git a/Host/Views/Shared/_Layout.cshtml b/Host/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..ad52657 --- /dev/null +++ b/Host/Views/Shared/_Layout.cshtml @@ -0,0 +1,544 @@ +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@using Hncore.Pass.Vpn.Service +@inject ProductService m_ProductService +@{ + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + var products = m_ProductService.Query(true).ToList(); +} + + + + + 聚IP JUIP.COM + + + + + + + + + + + + +
+ + + + + + @RenderBody() + + + +
+
+

+ 聚IP仅提供IP服务,用户使用聚IP从事的任何行为均不代表聚IP的意志和观点,与聚IP的立场无关。严禁用户使用聚IP从事任何违法犯罪行为, + 产生的相关责任用户自负,对此聚IP不承担任何法律责任。 +

+

+ 版权所有 河南华连网络科技有限公司|豫ICP备17004061号-15|增值电信业务经营许可证:B1-20190663 +

+ @*

*@ +

+
+
+ + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

我同意聚IP JUIP.COM用户注册协议

+

+

已有账号?立即登录

+
+ +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ @*自动登录*@ +
+ +
+

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

+

还没有账号?立即注册

+
+ + +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +

*手机号不是PPTP账号,请登录后开通PPTP账号*

+

+

已有账号?立即登录

+
+ + + + + + @RenderSection("Scripts", required: false) + + + diff --git a/Host/Views/Shared/_UserLayout.cshtml b/Host/Views/Shared/_UserLayout.cshtml new file mode 100644 index 0000000..85db074 --- /dev/null +++ b/Host/Views/Shared/_UserLayout.cshtml @@ -0,0 +1,89 @@ +@using Hncore.Pass.BaseInfo.Response +@using Hncore.Infrastructure.Serializer; +@{ + UserLoginModel user = null; + if (this.Context.Request.Cookies.TryGetValue("userInfo", out string userCookie)) + { + user = userCookie.FromJsonTo(); + } + string currentPath = this.Context.Request.Path.ToString().ToLower(); +} + + + + + 聚IP JUIP.COM + + + + + + + + + + + + + + + + + + +
+ +
+ @RenderBody() +
+
+ + @RenderSection("Scripts", required: false) + + + diff --git a/Host/Views/Shared/_ValidationScriptsPartial.cshtml b/Host/Views/Shared/_ValidationScriptsPartial.cshtml new file mode 100644 index 0000000..cb4d75c --- /dev/null +++ b/Host/Views/Shared/_ValidationScriptsPartial.cshtml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/Host/Views/User/Index.cshtml b/Host/Views/User/Index.cshtml new file mode 100644 index 0000000..c79a997 --- /dev/null +++ b/Host/Views/User/Index.cshtml @@ -0,0 +1,429 @@ +@using Home.Models +@using Hncore.Infrastructure.Extension +@model UserHomeModel +@{ + Layout = "_UserLayout"; + var e = this.Context.Request.GetInt("e"); +} + + + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+

+ + +

+
+
+ +
+
+
+ + +
+
+ + +
+
+ + +
+ +

+ + +

+
+
+ +@*充值*@ +
+
+
+ + +
+
+ +
+
+ + 支付宝支付 + 微信支付 +
+ +

+ + +

+
+
+ +
+
+
+
账户信息
+

编辑

+
+
+
+
+ +
+
+
+ 手机号/用户名: +
+
+ @(Model.UserModel.Phone??Model.UserModel.LoginCode) +
+
+ 密码: +
+
+ ******** + @**@ +
+ +
+
+
+
+
+
+ QQ号:@(Model.UserModel.QQ??"--") +
+
+ 微信号:@(Model.UserModel.Wx??"--") +
+
+ 淘宝会员名:@(Model.UserModel.TaoBao??"--") +
+
+ 邮箱:@(Model.UserModel.Email??"--") +
+
+
+
+
+
+
+
+
余额
+

充值

+
¥@Model.UserModel.RestAmount
+

可通过淘宝充值,或联系管理员充值

+
+
+
+
+
PPTP账号
+
+
+
+

@(Model.AccountModel.TotalCount-Model.AccountModel.ExpriedCount)

+

使用中

+
+
+
+
+
+ @Model.AccountModel.TotalCount +
+
+ 总个数 +
+
+ @Model.AccountModel.ExpriedCount +
+
+ 已过期 +
+
+
+
+
+
+
+ +
+
+
+
消费信息
+
+
+
+
+

@Model.Statistic.TodayExpend

+

今日消费

+
+
+

@Model.Statistic.TodayRefund

+

今日退款

+
+
+

@Model.Statistic.TodayCharege

+

今日充值

+
+
+

@Model.Statistic.MonthExpend

+

当月消费

+
+
+

@Model.Statistic.MonthRefund

+

当月退款

+
+
+

@Model.Statistic.MonthCharege

+

当月充值

+
+
+
+
+
+
+

@Model.Statistic.YearExpend

+

本年消费

+
+
+
+
+
+ +
+
+
+
聚IP头条
+
    + @foreach (var item in Model.TopNewsModel) + { +
  • @item.Title@item.CreateTime.ToString("yyyy.MM.dd")
  • + } +
+
+
+
+ + + +
+
+ +

微信支付 | 收银台

+
+
+

+

+

+
+
+

充值订单

+

¥

+

收款方:聚IP

+

下单时间:

+

订单号:

+
+
+
+
+ + + + + \ No newline at end of file diff --git a/Host/Views/User/Login.cshtml b/Host/Views/User/Login.cshtml new file mode 100644 index 0000000..e678aa7 --- /dev/null +++ b/Host/Views/User/Login.cshtml @@ -0,0 +1,15 @@ +@{ + ViewData["Title"] = "登录"; +} + +@section Scripts{ + +} + diff --git a/Host/Views/User/MyAccounts.cshtml b/Host/Views/User/MyAccounts.cshtml new file mode 100644 index 0000000..83805e6 --- /dev/null +++ b/Host/Views/User/MyAccounts.cshtml @@ -0,0 +1,693 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model List +@{ + Layout = "_UserLayout"; +} + + +
+
+ + + + + +
+
+
+
+
选择产品:
+
+ +
+
+
+
输入账号:
+
+ +
+
+
+
验证密码:
+
+ +
+
+

认证中,请耐心等待...

+

+
+
+
+
+
+
选择产品:
+
+ +
+
+
+
账号前缀:
+
+ +
+
+
+
开始数:
+
+ +
+
+
+
认证个数:
+
+ +
+
+
+
验证密码:
+
+ +
+
+

认证中,请耐心等待...

+

+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
序号账号登录时间在线时间服务器Ip登录ip上行下行操作
#{{index+1}}{{item.Account}}{{item.LoginTime}}{{item.OnlineTime}}{{item.ServerIP}}{{item.LoginIP}}{{item.UpStream}}{{item.DownStream}} 强制离线
+
+
+
+
+
+ + +
+
+ + +
+

+
+
+

为了给您带来更好的服务体验,请完善qq号和微信号。立即完善》

+
+
+
+ +
+
+
+
+
+
+ +
+ + + + +
+
+
+
+
+ +
+ + + + +
+
+
+
+
+
+
+ +
+
+
+
+ + +
+
+
+ + +
+ +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + @foreach (var item in Model) + { + + + + + + + + + + + @**@ + + + + + } + +
开通时间产品套餐账号密码连接数到期时间剩余时间在线及踢线服务器软件下载
@item.CreateTime.ToString("yyyy.MM.dd")@item.ProductName@item.PackageName@item.Account@item.Pwd @item.ConnectCount@item.EndTime.Value.ToString("yyyy.MM.dd")@(item.Status==AccountStatus.Refund?"已退货": item.RestTime)查看查看 查看 下载
+ @*
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
*@ +
+ + diff --git a/Host/Views/User/MyCoupons.cshtml b/Host/Views/User/MyCoupons.cshtml new file mode 100644 index 0000000..02a2c23 --- /dev/null +++ b/Host/Views/User/MyCoupons.cshtml @@ -0,0 +1,53 @@ +@using Hncore.Pass.Sells.Model +@model List +@{ + Layout = "_UserLayout"; +} +@foreach (var item in Model) +{ +
+
+ @if (item.Coupon.CouponType == ECouponType.Discount) + { + @(item.Coupon.CouponValue)折@item.Coupon.Name + } + @if (item.Coupon.CouponType == ECouponType.Minus) + { +
+ ¥@(item.Coupon.CouponValue)@item.Coupon.Name +
+ } +
+ 使用规则:@(item.Coupon.AllowMinAmount > 0 ? $"满{item.Coupon.AllowMinAmount}元可用" : "无限制") +
+
+ 有效时间:@(item.Orgin.StartTime.Value.ToString("yyyy.MM.dd"))-@(item.Orgin.EndTime.Value.ToString("yyyy.MM.dd")) +
+
+ 获得途径: @item.Orgin.Remark +
+
+ @(item.IsUsed?"已使用":"未使用") +
+
+
+} +@*
+
+
+ ¥3优惠券名称 +
+
+ 使用规则:无限制 +
+
+ 有效时间:2020.1.1-2020.2.3 +
+
+ 获得途径;淘宝下单赠送 +
+
+ 已使用 +
+
+
*@ diff --git a/Host/Views/User/MyOrders.cshtml b/Host/Views/User/MyOrders.cshtml new file mode 100644 index 0000000..7432a6f --- /dev/null +++ b/Host/Views/User/MyOrders.cshtml @@ -0,0 +1,234 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + Layout = "_UserLayout"; + + Func cut = word => + { + if (word.Length > 15) + return word.Substring(0, 15) + "..."; + return word; + }; +} + +
+
+ +
+ 日期筛选: +
+
+
+
+
+ +
+ + + + +
+
+
+
+
+ +
+ + + + +
+
+
+
+ +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+ +
+ +
+
+ + + + + + + + + + + + + + + @foreach (var item in Model.List) + { + + + + + + + + + + + + + + } +
日期订单编号类型产品套餐单价总连接数账号订单金额优惠券实付金额
@item.CreateTime.ToString("yyyy.MM.dd")@item.OrderNo@item.OrderType.GetEnumDisplayName()@item.ProductName@item.PackageName@item.DayPrice@(item.ConnectCount*item.AccountCount) + @cut(item.Accounts) +
@item.Accounts
+
@item.OrderAmount@item.CouponAmount@item.PaymentAmount
+
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
+ + + + + diff --git a/Host/Views/User/MyRefundOrders.cshtml b/Host/Views/User/MyRefundOrders.cshtml new file mode 100644 index 0000000..f388e7c --- /dev/null +++ b/Host/Views/User/MyRefundOrders.cshtml @@ -0,0 +1,195 @@ +@using Hncore.Infrastructure.Data +@using Hncore.Pass.Vpn.Domain +@using Hncore.Infrastructure.Extension +@using ViewComponents +@model PageData +@{ + Layout = "_UserLayout"; +} +
+
+ 日期: +
+
+
+
+
+ +
+ + + + +
+
+
+
+
+ +
+ + + + +
+
+
+
+ +
+
+
+ +
+
+
+
+ + +
+
+
+ + +
+
+ + + + + + + + + + + + + + + @foreach (var item in Model.List) + { + + + + + + + + + + + + + } +
日期订单编号类型产品套餐账号连接数退款时长退款单价退款金额
@item.CreateTime.ToString("yyyy.MM.dd")@item.OrderNo@item.OrderType.GetEnumDisplayName()@item.ProductName@item.PackageName@item.Accounts@item.ConnectCount@item.DayCount@item.DayPrice@item.RefundAmount
+
+ @await Component.InvokeAsync("Pager", new PagerModel() { Total = Model.RowCount, PageIndex = this.Context.Request.GetInt("PageIndex") }) +
+ diff --git a/Host/Views/_ViewImports.cshtml b/Host/Views/_ViewImports.cshtml new file mode 100644 index 0000000..8d53a04 --- /dev/null +++ b/Host/Views/_ViewImports.cshtml @@ -0,0 +1,4 @@ +@using Home +@using Home.Models +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Host \ No newline at end of file diff --git a/Host/Views/_ViewStart.cshtml b/Host/Views/_ViewStart.cshtml new file mode 100644 index 0000000..6e88aa3 --- /dev/null +++ b/Host/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +} diff --git a/Host/api.ps1 b/Host/api.ps1 new file mode 100644 index 0000000..2a7846d --- /dev/null +++ b/Host/api.ps1 @@ -0,0 +1,16 @@ +$workspace="C:\Program Files (x86)\Jenkins\workspace\hualian_host\Host" +dotnet restore $workspace +dotnet build $workspace +C:\Windows\System32\inetsrv\appcmd.exe stop site "hualian_host" +$TargetFolder = "D:\www\hualian\host" +$Files = get-childitem $TargetFolder -force +Foreach ($File in $Files) +{ +$FilePath=$File.FullName +Write-Host $FilePath -NoNewline +Remove-Item -Path $FilePath -Recurse -Force +} + +$proj="C:\Program Files (x86)\Jenkins\workspace\hualian_host\Host\Host.csproj" +dotnet publish -c Release $proj -o $TargetFolder +C:\Windows\System32\inetsrv\appcmd.exe start site "hualian_host" \ No newline at end of file diff --git a/Host/appsettings.Development.json b/Host/appsettings.Development.json new file mode 100644 index 0000000..421fa9f --- /dev/null +++ b/Host/appsettings.Development.json @@ -0,0 +1,46 @@ +{ + "TestCountLimit": 3, + "Service_BaseUrl": "http://hapi.hncore.net/", + "BaseInfoUrl": "http://www.ipkd.com/", + "NotifyUrl": "http://hapi.hncore.net/product/WxOrderCallBack", + //"MySql": "Server=101.200.84.129;Database=hualian_test;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", + "MySql": "Server=101.200.84.129;Database=hualianyun;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", + "Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1", + "Aliyun": { + "Oss": { + "AliEndpoint": "oss-cn-qingdao.aliyuncs.com", + "AliAccessId": "dpisQKVqzAYffodY", + "AliAccessKey": "ZG3uAkwPR4UpfsTJzG9DW1WeKIskHz" + }, + "Pay": { + "NotifyUrl": "http://hapi.hncore.net/product/AliNotify", + "ReturnUrl": "http://hapi.hncore.net/product/AliReturn", + "AppId": "2021001102636643", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB", + "PrivateKey": "MIIEpQIBAAKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQABAoIBAQCboaNptAGplqgl2gyQyo3eVXzxm+jBtgSBVUe3x6U0v9cpWowrGM7UzBWNbqqOB1u+5Ywmn5fQn5fomoSRJjQH36eE+VOgVaxFdO5Vh82Om01EFCmvmvz0f6lM9eTJm4jVyD0HF1l8x96mZqHAG/siZMHY/GnKg+Zuo6jTjx3KS8bdIWg6Y5O63NcNTFvUUPxLXXJptRIo8IMu347+3DiRkZvMP2JH98darOPdSFZgHgAUL69vIkSRup27i2txqooXhogHzBY6D4Sy4gSHQCX3eaIzioByg/IlT+hqlbyIpJxDN9pW5r9gzb5wsMGVRt3FTr0XtPNuuXPr3peor/zBAoGBAPzA5t20Fc4nGHXIzafaOKjNjaZmvazBrSRjuW7XZR2eT9wYLJBBSVxX1sHR3OWK+f4pPM1OOYjCTsM58KXH0DCmVrfQ1LrvT3cRr8QL1TnHswDXo+T7/QyBKDxKJ6eaar9FYlkRIMsme4MySwPEkXoX0WS90e2FqBnkpDYc7cJRAoGBAPvnrQJcof9rlVWZZRVH4YCCqtL78rPJ1LstkUnRuXPDsgcfMoFMY6WRJ3Qm1/flmTZXsgh1t5adQmLs3v4mOwbmOcHLyO3OPCFHNsNJYRjeJWfqfhWJNNffA/p2VbHZ8mxex3LBWNh8Hr4pt+THQm3DDdCXk76HyU5eurMZkumfAoGBAL07Bx2xeCnR52Q3pJEotgbbblPI0/UFQ8Xcy7YKmW+lWRDlIGgYGP6D3QtbPdC1ThlVcmobSMP1BdbwCBV2FY522rHgLYSPKqVwnnFekpMhygi1acVES94SzLbmpe27lHQDVHBufGjcNNiyzKrTfj80mdacrxDvYj2Qisjgu7khAoGAPJ584NOf3FJsZmP6kktw9bb8GresqR1Jxx1pGCWTBkuynMoiIkFavW4X23i5ghtLamtiGW0Sl/kSD7JG20wh6kAe6Ab9PFTj3XJAuHABILXctIwWeWJCSCyPzYcKijkTgIayYmgq1DXSRBrP+QsGblmBCpBfantMs0JSlWTzGKsCgYEA8jZX0RR+fLqSlptVrg2gmL/PsUG1OevcU1m9SLHcRW+FfMaV3AR5f70C0p/0MJLm9sTQrezup8SGeE+FS/7SG/0QFJ15Hq3nfmX3dgxbTZF8CRJxq/qdTD3/WoqMt1l7+/z4peC484HH6k51YmPVkOdrg72YExsbG0uePse3sqA=" + + }, + "PayH5": { + "NotifyUrl": "http://hapi.hncore.net/product/AliNotifyH5", + "ReturnUrl": "http://hapi.hncore.net/product/AliReturnH5", + "AppId": "2019022163283262", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjpCuxQ62JjainDiQFIJxYg/ZxseOtrVrLhwN/UT/RY5le17AfewGVs3iJiwD1s2K4oBqQaXDXLiKFACHrhSGMEGAStfjzDgFgYpscKXwbJpmisJuDuxdMHbrXJydFEEzF8L1MM/gvUKE7Ke8TBC1ue0Vc3czEAaQbNwpB/hrm9S+CiLk5jJhQWGJvUKqrSiRvMVPU2Wq0VCRpehgpZJ8EZ/1o/ylkQvRMpw702vyz3C2DEeK/T71LbNJBmLIB+UOZl/12xawJrx0nA874pZz0I+ObOt6TizHYpg3uU4npbrbyeC+KDWYgcZHVM7d9Aw2zPgotmTBs+eD9/GTZOKErQIDAQAB", + "PrivateKey": "MIIEogIBAAKCAQEAjpCuxQ62JjainDiQFIJxYg/ZxseOtrVrLhwN/UT/RY5le17AfewGVs3iJiwD1s2K4oBqQaXDXLiKFACHrhSGMEGAStfjzDgFgYpscKXwbJpmisJuDuxdMHbrXJydFEEzF8L1MM/gvUKE7Ke8TBC1ue0Vc3czEAaQbNwpB/hrm9S+CiLk5jJhQWGJvUKqrSiRvMVPU2Wq0VCRpehgpZJ8EZ/1o/ylkQvRMpw702vyz3C2DEeK/T71LbNJBmLIB+UOZl/12xawJrx0nA874pZz0I+ObOt6TizHYpg3uU4npbrbyeC+KDWYgcZHVM7d9Aw2zPgotmTBs+eD9/GTZOKErQIDAQABAoIBAC0DGWs2XeRq06SnZzZSiSIBBy1vzGt7lD+WtAQHSOHZN8lf/T7EyquVjZWnx/6GHxesm9/mSmx4B4CROkWITWXnCG6ZA19zQKnJ3rsiaWqgxUeCY+VqU3H92gn/mMjQXSVfdLLYr4iR/A4MV7Ncg0QUyvUN6Z1htS/pwzq1AKTOaMKCINbFMr2O2FxrqZ0keN0fgGXQ5OJ/UxA6VaCZt6nohgZ4C0xVxgebkWn6RcVWfVBXQhtUUwUCq9ibO8tDsOZ0IgldsDY879VKD2EvBSwDf2oDjP8R8z841RNfh8dwWNXi/T4QnG1bvir80t2vL0lOuAnnF8ENauga8aUleAECgYEA3fwdfIZUuDuq4sWXtMSYo5dQ/4LIhzTG7PyVDAB4+J+odiPbo6elNptevubArzdwDZF9V3rGSagHOh9ONHwrTlJk2qhyWLv7c3WfoL9daGmH5V69RA1s/oT9R9WrsawhtioUvM9B0M8P7Ks/nVD43WgE8DLM4Raf6GFfR/m13IECgYEApGkkS88WzMSRaeifjaC6z7EOAHhDIxMbkC3WGo879CIkCa7FL5WOKi/j2mM+1uxs54qebHzMuHivdldHyouVX/JEV43mlgUXiGwKsTftsfDLo4smWwoUCJdhk72SMJsf5g3oxLZDX/833pAV/BDDtiDUhY8JImG7QtZ8mOpRwi0CgYASQp3uU2J+sTHSa6yaCx3/PwBDtG9oZ9gBQJnGHffVg9SouzRjFvRJNKirjXHGOAo4o4IrAwdyoabOiiq1uI0baT2wmvClCfmaOs/BulwlraCnJo7tHSmdGjV3hkUUXXN8d6OzEF16nr3RmxiliTafh+H4HEWsMl8/D1t2IT1rgQKBgC4SXJ51yMDW8JzKGDP6736V8gOFr+KbTyUHAzFsI/PUwV6JQC6GbVE7HFGtcAWQOTBlMuHZ0xB6mUjDSpXiqZg6bpZOaGhvwtly1Ug2EQDFJnuM2dG3MEf8C9b3z4iZX8X67dh57sVu4nwWymJZXE6kQomuvHOLCYvASSgcuY59AoGAJkfE63SJEVeG/wdrqaYnckGbYVkUPVb+3WC6A0ryHsHn89DnhT0s9yJg2ok4JoFiDvF9UIqJ4O+JX8l2mqRRgWt6Lj/HdcxmfFtqjt3REaUjvYKKmFWCK/8NWHLaoUSoQnhjlGFb0LJzH9N5VYUWpiitKIIB+eVZ/iHNUJ+EDQ4=" + + } + }, + "RabbitMqConfig": { + "HostName": "127.0.0.1", + "Port": 5672, + "UserName": "guest", + "Password": "123456", + "VirtualHost": "/" + }, + "WxApps": { + "AppID": "wx18e5b4f42773c3ec", //ں + "AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758", + "EncodingAESKey": "XKBeQXngKx4Ijr2QbJo2cR6ydk0uhQCXyKVJzuXgdjH", + "MchId": "1571608411", + "MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae" + } +} diff --git a/Host/appsettings.Production.json b/Host/appsettings.Production.json new file mode 100644 index 0000000..8b9dd8d --- /dev/null +++ b/Host/appsettings.Production.json @@ -0,0 +1,52 @@ +{ + "TestCountLimit": 3, + "Service_BaseUrl": "http://www.juip.com/", + "BaseInfoUrl": "http://www.juip.com/", + "NotifyUrl": "http://www.juip.com/product/WxOrderCallBack", + "UNotifyUrl": "http://www.juip.com/user/WxOrderCallBack", + //"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", + "MySql": "Server=101.200.84.129;Database=hualian_test;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", + "Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1", + "Aliyun": { + "Oss": { + "AliEndpoint": "oss-cn-qingdao.aliyuncs.com", + "AliAccessId": "dpisQKVqzAYffodY", + "AliAccessKey": "ZG3uAkwPR4UpfsTJzG9DW1WeKIskHz" + }, + "Pay": { + "NotifyUrl": "http://www.juip.com/product/AliNotify", + "ReturnUrl": "http://www.juip.com/product/AliReturn", + "UNotifyUrl": "http://www.juip.com/user/AliNotify", + "UReturnUrl": "http://www.juip.com/user/AliReturn", + "AppId": "2021001102636643", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB", + // "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQAB", + "PrivateKey": "MIIEpQIBAAKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQABAoIBAQCboaNptAGplqgl2gyQyo3eVXzxm+jBtgSBVUe3x6U0v9cpWowrGM7UzBWNbqqOB1u+5Ywmn5fQn5fomoSRJjQH36eE+VOgVaxFdO5Vh82Om01EFCmvmvz0f6lM9eTJm4jVyD0HF1l8x96mZqHAG/siZMHY/GnKg+Zuo6jTjx3KS8bdIWg6Y5O63NcNTFvUUPxLXXJptRIo8IMu347+3DiRkZvMP2JH98darOPdSFZgHgAUL69vIkSRup27i2txqooXhogHzBY6D4Sy4gSHQCX3eaIzioByg/IlT+hqlbyIpJxDN9pW5r9gzb5wsMGVRt3FTr0XtPNuuXPr3peor/zBAoGBAPzA5t20Fc4nGHXIzafaOKjNjaZmvazBrSRjuW7XZR2eT9wYLJBBSVxX1sHR3OWK+f4pPM1OOYjCTsM58KXH0DCmVrfQ1LrvT3cRr8QL1TnHswDXo+T7/QyBKDxKJ6eaar9FYlkRIMsme4MySwPEkXoX0WS90e2FqBnkpDYc7cJRAoGBAPvnrQJcof9rlVWZZRVH4YCCqtL78rPJ1LstkUnRuXPDsgcfMoFMY6WRJ3Qm1/flmTZXsgh1t5adQmLs3v4mOwbmOcHLyO3OPCFHNsNJYRjeJWfqfhWJNNffA/p2VbHZ8mxex3LBWNh8Hr4pt+THQm3DDdCXk76HyU5eurMZkumfAoGBAL07Bx2xeCnR52Q3pJEotgbbblPI0/UFQ8Xcy7YKmW+lWRDlIGgYGP6D3QtbPdC1ThlVcmobSMP1BdbwCBV2FY522rHgLYSPKqVwnnFekpMhygi1acVES94SzLbmpe27lHQDVHBufGjcNNiyzKrTfj80mdacrxDvYj2Qisjgu7khAoGAPJ584NOf3FJsZmP6kktw9bb8GresqR1Jxx1pGCWTBkuynMoiIkFavW4X23i5ghtLamtiGW0Sl/kSD7JG20wh6kAe6Ab9PFTj3XJAuHABILXctIwWeWJCSCyPzYcKijkTgIayYmgq1DXSRBrP+QsGblmBCpBfantMs0JSlWTzGKsCgYEA8jZX0RR+fLqSlptVrg2gmL/PsUG1OevcU1m9SLHcRW+FfMaV3AR5f70C0p/0MJLm9sTQrezup8SGeE+FS/7SG/0QFJ15Hq3nfmX3dgxbTZF8CRJxq/qdTD3/WoqMt1l7+/z4peC484HH6k51YmPVkOdrg72YExsbG0uePse3sqA=" + + }, + "PayH5": { + "NotifyUrl": "http://www.juip.com/product/AliNotifyH5", + "ReturnUrl": "http://www.juip.com/product/AliReturnH5", + "UNotifyUrl": "http://www.juip.com/user/AliNotifyH5", + "UReturnUrl": "http://www.juip.com/user/AliReturnH5", + "AppId": "2019022163283262", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB", + "PrivateKey": "MIIEogIBAAKCAQEAjpCuxQ62JjainDiQFIJxYg/ZxseOtrVrLhwN/UT/RY5le17AfewGVs3iJiwD1s2K4oBqQaXDXLiKFACHrhSGMEGAStfjzDgFgYpscKXwbJpmisJuDuxdMHbrXJydFEEzF8L1MM/gvUKE7Ke8TBC1ue0Vc3czEAaQbNwpB/hrm9S+CiLk5jJhQWGJvUKqrSiRvMVPU2Wq0VCRpehgpZJ8EZ/1o/ylkQvRMpw702vyz3C2DEeK/T71LbNJBmLIB+UOZl/12xawJrx0nA874pZz0I+ObOt6TizHYpg3uU4npbrbyeC+KDWYgcZHVM7d9Aw2zPgotmTBs+eD9/GTZOKErQIDAQABAoIBAC0DGWs2XeRq06SnZzZSiSIBBy1vzGt7lD+WtAQHSOHZN8lf/T7EyquVjZWnx/6GHxesm9/mSmx4B4CROkWITWXnCG6ZA19zQKnJ3rsiaWqgxUeCY+VqU3H92gn/mMjQXSVfdLLYr4iR/A4MV7Ncg0QUyvUN6Z1htS/pwzq1AKTOaMKCINbFMr2O2FxrqZ0keN0fgGXQ5OJ/UxA6VaCZt6nohgZ4C0xVxgebkWn6RcVWfVBXQhtUUwUCq9ibO8tDsOZ0IgldsDY879VKD2EvBSwDf2oDjP8R8z841RNfh8dwWNXi/T4QnG1bvir80t2vL0lOuAnnF8ENauga8aUleAECgYEA3fwdfIZUuDuq4sWXtMSYo5dQ/4LIhzTG7PyVDAB4+J+odiPbo6elNptevubArzdwDZF9V3rGSagHOh9ONHwrTlJk2qhyWLv7c3WfoL9daGmH5V69RA1s/oT9R9WrsawhtioUvM9B0M8P7Ks/nVD43WgE8DLM4Raf6GFfR/m13IECgYEApGkkS88WzMSRaeifjaC6z7EOAHhDIxMbkC3WGo879CIkCa7FL5WOKi/j2mM+1uxs54qebHzMuHivdldHyouVX/JEV43mlgUXiGwKsTftsfDLo4smWwoUCJdhk72SMJsf5g3oxLZDX/833pAV/BDDtiDUhY8JImG7QtZ8mOpRwi0CgYASQp3uU2J+sTHSa6yaCx3/PwBDtG9oZ9gBQJnGHffVg9SouzRjFvRJNKirjXHGOAo4o4IrAwdyoabOiiq1uI0baT2wmvClCfmaOs/BulwlraCnJo7tHSmdGjV3hkUUXXN8d6OzEF16nr3RmxiliTafh+H4HEWsMl8/D1t2IT1rgQKBgC4SXJ51yMDW8JzKGDP6736V8gOFr+KbTyUHAzFsI/PUwV6JQC6GbVE7HFGtcAWQOTBlMuHZ0xB6mUjDSpXiqZg6bpZOaGhvwtly1Ug2EQDFJnuM2dG3MEf8C9b3z4iZX8X67dh57sVu4nwWymJZXE6kQomuvHOLCYvASSgcuY59AoGAJkfE63SJEVeG/wdrqaYnckGbYVkUPVb+3WC6A0ryHsHn89DnhT0s9yJg2ok4JoFiDvF9UIqJ4O+JX8l2mqRRgWt6Lj/HdcxmfFtqjt3REaUjvYKKmFWCK/8NWHLaoUSoQnhjlGFb0LJzH9N5VYUWpiitKIIB+eVZ/iHNUJ+EDQ4=" + + } + }, + "RabbitMqConfig": { + "HostName": "127.0.0.1", + "Port": 5672, + "UserName": "guest", + "Password": "123456", + "VirtualHost": "/" + }, + "WxApps": { + "AppID": "wx18e5b4f42773c3ec", //ں + "AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758", + "EncodingAESKey": "XKBeQXngKx4Ijr2QbJo2cR6ydk0uhQCXyKVJzuXgdjH", + "MchId": "1571608411", + "MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae" + } +} diff --git a/Host/appsettings.json b/Host/appsettings.json new file mode 100644 index 0000000..f76003f --- /dev/null +++ b/Host/appsettings.json @@ -0,0 +1,45 @@ +{ + "TestCountLimit": 3, + "Service_BaseUrl": "http://www.juip.com/", + "BaseInfoUrl": "http://www.juip.com/", + "NotifyUrl": "http://www.juip.com/product/WxOrderCallBack", + "MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", + "Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1", + "Aliyun": { + "Oss": { + "AliEndpoint": "oss-cn-qingdao.aliyuncs.com", + "AliAccessId": "dpisQKVqzAYffodY", + "AliAccessKey": "ZG3uAkwPR4UpfsTJzG9DW1WeKIskHz" + }, + "Pay": { + "NotifyUrl": "http://www.juip.com/product/AliNotify", + "ReturnUrl": "http://www.juip.com/product/AliReturn", + "AppId": "2021001102636643", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB", + // "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQAB", + "PrivateKey": "MIIEpQIBAAKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQABAoIBAQCboaNptAGplqgl2gyQyo3eVXzxm+jBtgSBVUe3x6U0v9cpWowrGM7UzBWNbqqOB1u+5Ywmn5fQn5fomoSRJjQH36eE+VOgVaxFdO5Vh82Om01EFCmvmvz0f6lM9eTJm4jVyD0HF1l8x96mZqHAG/siZMHY/GnKg+Zuo6jTjx3KS8bdIWg6Y5O63NcNTFvUUPxLXXJptRIo8IMu347+3DiRkZvMP2JH98darOPdSFZgHgAUL69vIkSRup27i2txqooXhogHzBY6D4Sy4gSHQCX3eaIzioByg/IlT+hqlbyIpJxDN9pW5r9gzb5wsMGVRt3FTr0XtPNuuXPr3peor/zBAoGBAPzA5t20Fc4nGHXIzafaOKjNjaZmvazBrSRjuW7XZR2eT9wYLJBBSVxX1sHR3OWK+f4pPM1OOYjCTsM58KXH0DCmVrfQ1LrvT3cRr8QL1TnHswDXo+T7/QyBKDxKJ6eaar9FYlkRIMsme4MySwPEkXoX0WS90e2FqBnkpDYc7cJRAoGBAPvnrQJcof9rlVWZZRVH4YCCqtL78rPJ1LstkUnRuXPDsgcfMoFMY6WRJ3Qm1/flmTZXsgh1t5adQmLs3v4mOwbmOcHLyO3OPCFHNsNJYRjeJWfqfhWJNNffA/p2VbHZ8mxex3LBWNh8Hr4pt+THQm3DDdCXk76HyU5eurMZkumfAoGBAL07Bx2xeCnR52Q3pJEotgbbblPI0/UFQ8Xcy7YKmW+lWRDlIGgYGP6D3QtbPdC1ThlVcmobSMP1BdbwCBV2FY522rHgLYSPKqVwnnFekpMhygi1acVES94SzLbmpe27lHQDVHBufGjcNNiyzKrTfj80mdacrxDvYj2Qisjgu7khAoGAPJ584NOf3FJsZmP6kktw9bb8GresqR1Jxx1pGCWTBkuynMoiIkFavW4X23i5ghtLamtiGW0Sl/kSD7JG20wh6kAe6Ab9PFTj3XJAuHABILXctIwWeWJCSCyPzYcKijkTgIayYmgq1DXSRBrP+QsGblmBCpBfantMs0JSlWTzGKsCgYEA8jZX0RR+fLqSlptVrg2gmL/PsUG1OevcU1m9SLHcRW+FfMaV3AR5f70C0p/0MJLm9sTQrezup8SGeE+FS/7SG/0QFJ15Hq3nfmX3dgxbTZF8CRJxq/qdTD3/WoqMt1l7+/z4peC484HH6k51YmPVkOdrg72YExsbG0uePse3sqA=" + + }, + "PayH5": { + "NotifyUrl": "http://www.juip.com/product/AliNotifyH5", + "ReturnUrl": "http://www.juip.com/product/AliReturnH5", + "AppId": "2019022163283262", + "PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB", + "PrivateKey": "MIIEogIBAAKCAQEAjpCuxQ62JjainDiQFIJxYg/ZxseOtrVrLhwN/UT/RY5le17AfewGVs3iJiwD1s2K4oBqQaXDXLiKFACHrhSGMEGAStfjzDgFgYpscKXwbJpmisJuDuxdMHbrXJydFEEzF8L1MM/gvUKE7Ke8TBC1ue0Vc3czEAaQbNwpB/hrm9S+CiLk5jJhQWGJvUKqrSiRvMVPU2Wq0VCRpehgpZJ8EZ/1o/ylkQvRMpw702vyz3C2DEeK/T71LbNJBmLIB+UOZl/12xawJrx0nA874pZz0I+ObOt6TizHYpg3uU4npbrbyeC+KDWYgcZHVM7d9Aw2zPgotmTBs+eD9/GTZOKErQIDAQABAoIBAC0DGWs2XeRq06SnZzZSiSIBBy1vzGt7lD+WtAQHSOHZN8lf/T7EyquVjZWnx/6GHxesm9/mSmx4B4CROkWITWXnCG6ZA19zQKnJ3rsiaWqgxUeCY+VqU3H92gn/mMjQXSVfdLLYr4iR/A4MV7Ncg0QUyvUN6Z1htS/pwzq1AKTOaMKCINbFMr2O2FxrqZ0keN0fgGXQ5OJ/UxA6VaCZt6nohgZ4C0xVxgebkWn6RcVWfVBXQhtUUwUCq9ibO8tDsOZ0IgldsDY879VKD2EvBSwDf2oDjP8R8z841RNfh8dwWNXi/T4QnG1bvir80t2vL0lOuAnnF8ENauga8aUleAECgYEA3fwdfIZUuDuq4sWXtMSYo5dQ/4LIhzTG7PyVDAB4+J+odiPbo6elNptevubArzdwDZF9V3rGSagHOh9ONHwrTlJk2qhyWLv7c3WfoL9daGmH5V69RA1s/oT9R9WrsawhtioUvM9B0M8P7Ks/nVD43WgE8DLM4Raf6GFfR/m13IECgYEApGkkS88WzMSRaeifjaC6z7EOAHhDIxMbkC3WGo879CIkCa7FL5WOKi/j2mM+1uxs54qebHzMuHivdldHyouVX/JEV43mlgUXiGwKsTftsfDLo4smWwoUCJdhk72SMJsf5g3oxLZDX/833pAV/BDDtiDUhY8JImG7QtZ8mOpRwi0CgYASQp3uU2J+sTHSa6yaCx3/PwBDtG9oZ9gBQJnGHffVg9SouzRjFvRJNKirjXHGOAo4o4IrAwdyoabOiiq1uI0baT2wmvClCfmaOs/BulwlraCnJo7tHSmdGjV3hkUUXXN8d6OzEF16nr3RmxiliTafh+H4HEWsMl8/D1t2IT1rgQKBgC4SXJ51yMDW8JzKGDP6736V8gOFr+KbTyUHAzFsI/PUwV6JQC6GbVE7HFGtcAWQOTBlMuHZ0xB6mUjDSpXiqZg6bpZOaGhvwtly1Ug2EQDFJnuM2dG3MEf8C9b3z4iZX8X67dh57sVu4nwWymJZXE6kQomuvHOLCYvASSgcuY59AoGAJkfE63SJEVeG/wdrqaYnckGbYVkUPVb+3WC6A0ryHsHn89DnhT0s9yJg2ok4JoFiDvF9UIqJ4O+JX8l2mqRRgWt6Lj/HdcxmfFtqjt3REaUjvYKKmFWCK/8NWHLaoUSoQnhjlGFb0LJzH9N5VYUWpiitKIIB+eVZ/iHNUJ+EDQ4=" + + } + }, + "RabbitMqConfig": { + "HostName": "127.0.0.1", + "Port": 5672, + "UserName": "guest", + "Password": "123456", + "VirtualHost": "/" + }, + "WxApps": { + "AppID": "wx18e5b4f42773c3ec", //ں + "AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758", + "MchId": "1571608411", + "MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae" + } +} diff --git a/Host/hualian-api-nginx.conf b/Host/hualian-api-nginx.conf new file mode 100644 index 0000000..5b24f1e --- /dev/null +++ b/Host/hualian-api-nginx.conf @@ -0,0 +1,19 @@ +server{ + listen 80; + server_name hapi.hncore.net; + location / { + proxy_pass http://127.0.0.1:5000; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection keep-alive; + proxy_set_header Host $http_host; + proxy_cache_bypass $http_upgrade; + proxy_read_timeout 600; # + } +} +server{ + listen 80; + server_name juip.com; + rewrite ^/(.*) http://www.juip.com/$1 permanent; +} + diff --git a/Host/hualian-api.service b/Host/hualian-api.service new file mode 100644 index 0000000..5cece0c --- /dev/null +++ b/Host/hualian-api.service @@ -0,0 +1,14 @@ +[ "Unit" ] +Description=hualian-api + +[Service] +WorkingDirectory=/var/www/hualian/api +ExecStart=/usr/bin/dotnet /var/www/hualian/api/Host.dll -u http://127.0.0.1:5000 +Restart=always +RestartSec=10 +SyslogIdentifier=hualian-api +User=root +Environment=ASPNETCORE_ENVIRONMENT=Production + +[install] +WantedBy=multi-user.target diff --git a/Host/remark.txt b/Host/remark.txt new file mode 100644 index 0000000..9926622 --- /dev/null +++ b/Host/remark.txt @@ -0,0 +1,17 @@ +1.移动端续费-- +2.移动端认证-- +3.移动端退款-- +4.订单详情-- +5.账号列表-- +6.移动端购买前登录-- +7.移动端找回密码-- +pc端找回密码 +8.资讯完善---- +9.线路板完善-- +10.工单 +11.销售渠道 +12.H5支付 +13.公众号号支付 +14.过期通知 +15.判断微信浏览器-- +16.绑定微信 \ No newline at end of file diff --git a/Host/sh.cmd b/Host/sh.cmd new file mode 100644 index 0000000..4eeb09e --- /dev/null +++ b/Host/sh.cmd @@ -0,0 +1,16 @@ +rm -rf app +cd Host +dotnet publish Host.csproj -c Release -o ../app +cd ../app +api_version="`date +%y%m%d.%H%M`.$BUILD_NUMBER" +git_commit_info=$(git show -s --format="%an<%ae>%ciύύעΪ%s") +docker build -t registry.cn-beijing.aliyuncs.com/yhncore/hualian:$api_version --build-arg IMAGE_VERSION=$api_version --build-arg GIT_INFO="$git_commit_info" . +docker login -u microkj@163.com -p 12qwaszx registry.cn-beijing.aliyuncs.com +docker push registry.cn-beijing.aliyuncs.com/yhncore/hualian:$api_version + +#docker rmi -f $(docker images |grep 'hualian'|awk '{print $3}') +curl -X PATCH \ + -H "content-type: application/strategic-merge-patch+json" \ + -H "Authorization:Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVFQjdvUHljNEk2V0t2WmlWWkJIeTFldzZFSzBPRzNiS05NUEpaZWI2eWcifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJrdWJvYXJkLXVzZXItdG9rZW4teHM0ZGsiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC5uYW1lIjoia3Vib2FyZC11c2VyIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQudWlkIjoiOGU0NWMyN2EtNmQyOC00MmY3LWI1OGUtZmRkZGFiOGMyMGZjIiwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50Omt1YmUtc3lzdGVtOmt1Ym9hcmQtdXNlciJ9.c262cNjBWQC8u-KqyIW3-0Z9iKVcveL7gHKbfKQCMHbIoI2VthaUTwzr6ricHT5C_EzCAFUydLT_6yjot6i2_Np9Hcsha3zbBd5hqwlREeXmbJHsGfcd8pADERtJHHTChRy9FRfUZahsZEu7_QrlPp-YLMO5QafGjvZfxFwEkUaaPxqPt2gM4KTWOdqYhuhMyeDOagdO2sRMhawPMHymYhKwGyZ2HUSN0dFA3x91LFyNbPf_5wnd-naezI00lT8BUKKGt7Tf2nKOzxQfIQkhrDc3SMah0q0Xa9tOPJXJ3RDJfPeDR5bSeEF-rmEG5VRrNAjkLqEs4Vnx7csXoAi3kg" \ + -d '{"spec":{"template":{"spec":{"containers":[{"name":"host-api","image":"registry.cn-beijing.aliyuncs.com/yhncore/hualian:'$api_version'"}]}}}}' \ + "http://192.168.153.3:32567/k8s-api/apis/apps/v1/namespaces/hualian/deployments/svc-host-api" \ No newline at end of file diff --git a/Host/ueditor.gqc.json b/Host/ueditor.gqc.json new file mode 100644 index 0000000..2c608bb --- /dev/null +++ b/Host/ueditor.gqc.json @@ -0,0 +1,180 @@ +/* 前后端通信相关的配置,注释只允许使用多行方式 */ +{ + /* 上传图片配置项 */ + "imageActionName": "uploadimage", /* 执行上传图片的action名称 */ + "imageFieldName": "upfile", /* 提交的图片表单名称 */ + "imageMaxSize": 2048000, /* 上传大小限制,单位B */ + "imageAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 上传图片格式显示 */ + "imageCompressEnable": true, /* 是否压缩图片,默认是true */ + "imageCompressBorder": 1600, /* 图片压缩最长边限制 */ + "imageInsertAlign": "none", /* 插入的图片浮动方式 */ + "imageUrlPrefix": "http://xxx.com", /* 图片访问路径前缀 */ + "imagePathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + /* {filename} 会替换成原文件名,配置这项需要注意中文乱码问题 */ + /* {rand:6} 会替换成随机数,后面的数字是随机数的位数 */ + /* {time} 会替换成时间戳 */ + /* {yyyy} 会替换成四位年份 */ + /* {yy} 会替换成两位年份 */ + /* {mm} 会替换成两位月份 */ + /* {dd} 会替换成两位日期 */ + /* {hh} 会替换成两位小时 */ + /* {ii} 会替换成两位分钟 */ + /* {ss} 会替换成两位秒 */ + /* 非法字符 \ : * ? " < > | */ + /* 具请体看线上文档: fex.baidu.com/ueditor/#use-format_upload_filename */ + + /* 涂鸦图片上传配置项 */ + "scrawlActionName": "uploadscrawl", /* 执行上传涂鸦的action名称 */ + "scrawlFieldName": "upfile", /* 提交的图片表单名称 */ + "scrawlPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "scrawlMaxSize": 2048000, /* 上传大小限制,单位B */ + "scrawlUrlPrefix": "http://xxx.com", /* 图片访问路径前缀 */ + "scrawlInsertAlign": "none", + + /* 截图工具上传 */ + "snapscreenActionName": "uploadimage", /* 执行上传截图的action名称 */ + "snapscreenPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "snapscreenUrlPrefix": "http://xxx.com", /* 图片访问路径前缀 */ + "snapscreenInsertAlign": "none", /* 插入的图片浮动方式 */ + + /* 抓取远程图片配置 */ + "catcherLocalDomain": [ "127.0.0.1", "localhost", "img.baidu.com" ], + "catcherActionName": "catchimage", /* 执行抓取远程图片的action名称 */ + "catcherFieldName": "source", /* 提交的图片列表表单名称 */ + "catcherPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "catcherUrlPrefix": "http://xxx.com", /* 图片访问路径前缀 */ + "catcherMaxSize": 2048000, /* 上传大小限制,单位B */ + "catcherAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 抓取图片格式显示 */ + + /* 上传视频配置 */ + "videoActionName": "uploadvideo", /* 执行上传视频的action名称 */ + "videoFieldName": "upfile", /* 提交的视频表单名称 */ + "videoPathFormat": "upload/video/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "videoUrlPrefix": "http://xxx.com/", /* 视频访问路径前缀 */ + "videoMaxSize": 102400000, /* 上传大小限制,单位B,默认100MB */ + "videoAllowFiles": [ + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid" + ], /* 上传视频格式显示 */ + + /* 上传文件配置 */ + "fileActionName": "uploadfile", /* controller里,执行上传视频的action名称 */ + "fileFieldName": "upfile", /* 提交的文件表单名称 */ + "filePathFormat": "upload/file/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "fileUrlPrefix": "http://xxx.com", /* 文件访问路径前缀 */ + "fileMaxSize": 51200000, /* 上传大小限制,单位B,默认50MB */ + "fileAllowFiles": [ + ".png", + ".jpg", + ".jpeg", + ".gif", + ".bmp", + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid", + ".rar", + ".zip", + ".tar", + ".gz", + ".7z", + ".bz2", + ".cab", + ".iso", + ".doc", + ".docx", + ".xls", + ".xlsx", + ".ppt", + ".pptx", + ".pdf", + ".txt", + ".md", + ".xml" + ], /* 上传文件格式显示 */ + + /* 列出指定目录下的图片 */ + "imageManagerActionName": "listimage", /* 执行图片管理的action名称 */ + "imageManagerListPath": "upload/image", /* 指定要列出图片的目录 */ + "imageManagerListSize": 20, /* 每次列出文件数量 */ + "imageManagerUrlPrefix": "http://xxx.com", /* 图片访问路径前缀 */ + "imageManagerInsertAlign": "none", /* 插入的图片浮动方式 */ + "imageManagerAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 列出的文件类型 */ + + /* 列出指定目录下的文件 */ + "fileManagerActionName": "listfile", /* 执行文件管理的action名称 */ + "fileManagerListPath": "upload/file", /* 指定要列出文件的目录 */ + "fileManagerUrlPrefix": "http://xxx.com", /* 文件访问路径前缀 */ + "fileManagerListSize": 20, /* 每次列出文件数量 */ + "fileManagerAllowFiles": [ + ".png", + ".jpg", + ".jpeg", + ".gif", + ".bmp", + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid", + ".rar", + ".zip", + ".tar", + ".gz", + ".7z", + ".bz2", + ".cab", + ".iso", + ".doc", + ".docx", + ".xls", + ".xlsx", + ".ppt", + ".pptx", + ".pdf", + ".txt", + ".md", + ".xml" + ] /* 列出的文件类型 */ + +} \ No newline at end of file diff --git a/Host/ueditor.json b/Host/ueditor.json new file mode 100644 index 0000000..63c6b3a --- /dev/null +++ b/Host/ueditor.json @@ -0,0 +1,180 @@ +/* 前后端通信相关的配置,注释只允许使用多行方式 */ +{ + /* 上传图片配置项 */ + "imageActionName": "uploadimage", /* 执行上传图片的action名称 */ + "imageFieldName": "upfile", /* 提交的图片表单名称 */ + "imageMaxSize": 2048000, /* 上传大小限制,单位B */ + "imageAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 上传图片格式显示 */ + "imageCompressEnable": true, /* 是否压缩图片,默认是true */ + "imageCompressBorder": 1600, /* 图片压缩最长边限制 */ + "imageInsertAlign": "none", /* 插入的图片浮动方式 */ + "imageUrlPrefix": "http://www.juip.com/", /* 图片访问路径前缀 */ + "imagePathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + /* {filename} 会替换成原文件名,配置这项需要注意中文乱码问题 */ + /* {rand:6} 会替换成随机数,后面的数字是随机数的位数 */ + /* {time} 会替换成时间戳 */ + /* {yyyy} 会替换成四位年份 */ + /* {yy} 会替换成两位年份 */ + /* {mm} 会替换成两位月份 */ + /* {dd} 会替换成两位日期 */ + /* {hh} 会替换成两位小时 */ + /* {ii} 会替换成两位分钟 */ + /* {ss} 会替换成两位秒 */ + /* 非法字符 \ : * ? " < > | */ + /* 具请体看线上文档: fex.baidu.com/ueditor/#use-format_upload_filename */ + + /* 涂鸦图片上传配置项 */ + "scrawlActionName": "uploadscrawl", /* 执行上传涂鸦的action名称 */ + "scrawlFieldName": "upfile", /* 提交的图片表单名称 */ + "scrawlPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "scrawlMaxSize": 2048000, /* 上传大小限制,单位B */ + "scrawlUrlPrefix": "", /* 图片访问路径前缀 */ + "scrawlInsertAlign": "none", + + /* 截图工具上传 */ + "snapscreenActionName": "uploadimage", /* 执行上传截图的action名称 */ + "snapscreenPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "snapscreenUrlPrefix": "", /* 图片访问路径前缀 */ + "snapscreenInsertAlign": "none", /* 插入的图片浮动方式 */ + + /* 抓取远程图片配置 */ + "catcherLocalDomain": [ "127.0.0.1", "localhost", "img.baidu.com" ], + "catcherActionName": "catchimage", /* 执行抓取远程图片的action名称 */ + "catcherFieldName": "source", /* 提交的图片列表表单名称 */ + "catcherPathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "catcherUrlPrefix": "", /* 图片访问路径前缀 */ + "catcherMaxSize": 2048000, /* 上传大小限制,单位B */ + "catcherAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 抓取图片格式显示 */ + + /* 上传视频配置 */ + "videoActionName": "uploadvideo", /* 执行上传视频的action名称 */ + "videoFieldName": "upfile", /* 提交的视频表单名称 */ + "videoPathFormat": "upload/video/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "videoUrlPrefix": "", /* 视频访问路径前缀 */ + "videoMaxSize": 102400000, /* 上传大小限制,单位B,默认100MB */ + "videoAllowFiles": [ + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid" + ], /* 上传视频格式显示 */ + + /* 上传文件配置 */ + "fileActionName": "uploadfile", /* controller里,执行上传视频的action名称 */ + "fileFieldName": "upfile", /* 提交的文件表单名称 */ + "filePathFormat": "upload/file/{yyyy}{mm}{dd}/{time}{rand:6}", /* 上传保存路径,可以自定义保存路径和文件名格式 */ + "fileUrlPrefix": "", /* 文件访问路径前缀 */ + "fileMaxSize": 51200000, /* 上传大小限制,单位B,默认50MB */ + "fileAllowFiles": [ + ".png", + ".jpg", + ".jpeg", + ".gif", + ".bmp", + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid", + ".rar", + ".zip", + ".tar", + ".gz", + ".7z", + ".bz2", + ".cab", + ".iso", + ".doc", + ".docx", + ".xls", + ".xlsx", + ".ppt", + ".pptx", + ".pdf", + ".txt", + ".md", + ".xml" + ], /* 上传文件格式显示 */ + + /* 列出指定目录下的图片 */ + "imageManagerActionName": "listimage", /* 执行图片管理的action名称 */ + "imageManagerListPath": "upload/image", /* 指定要列出图片的目录 */ + "imageManagerListSize": 20, /* 每次列出文件数量 */ + "imageManagerUrlPrefix": "", /* 图片访问路径前缀 */ + "imageManagerInsertAlign": "none", /* 插入的图片浮动方式 */ + "imageManagerAllowFiles": [ ".png", ".jpg", ".jpeg", ".gif", ".bmp" ], /* 列出的文件类型 */ + + /* 列出指定目录下的文件 */ + "fileManagerActionName": "listfile", /* 执行文件管理的action名称 */ + "fileManagerListPath": "upload/file", /* 指定要列出文件的目录 */ + "fileManagerUrlPrefix": "", /* 文件访问路径前缀 */ + "fileManagerListSize": 20, /* 每次列出文件数量 */ + "fileManagerAllowFiles": [ + ".png", + ".jpg", + ".jpeg", + ".gif", + ".bmp", + ".flv", + ".swf", + ".mkv", + ".avi", + ".rm", + ".rmvb", + ".mpeg", + ".mpg", + ".ogg", + ".ogv", + ".mov", + ".wmv", + ".mp4", + ".webm", + ".mp3", + ".wav", + ".mid", + ".rar", + ".zip", + ".tar", + ".gz", + ".7z", + ".bz2", + ".cab", + ".iso", + ".doc", + ".docx", + ".xls", + ".xlsx", + ".ppt", + ".pptx", + ".pdf", + ".txt", + ".md", + ".xml" + ] /* 列出的文件类型 */ + +} \ No newline at end of file diff --git a/Host/upload/readme.txt b/Host/upload/readme.txt new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/Host/upload/readme.txt @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Host/web.config b/Host/web.config new file mode 100644 index 0000000..87180ac --- /dev/null +++ b/Host/web.config @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Host/wwwroot/css/.DS_Store b/Host/wwwroot/css/.DS_Store new file mode 100644 index 0000000..99e988d Binary files /dev/null and b/Host/wwwroot/css/.DS_Store differ diff --git a/Host/wwwroot/css/animate.min.css b/Host/wwwroot/css/animate.min.css new file mode 100644 index 0000000..f3f1068 --- /dev/null +++ b/Host/wwwroot/css/animate.min.css @@ -0,0 +1,11 @@ +@charset "UTF-8"; + +/*! + * animate.css -https://daneden.github.io/animate.css/ + * Version - 3.7.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2019 Daniel Eden + */ + +@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}.animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (prefers-reduced-motion:reduce),(print){.animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}} \ No newline at end of file diff --git a/Host/wwwroot/css/base.css b/Host/wwwroot/css/base.css new file mode 100644 index 0000000..3971b3a --- /dev/null +++ b/Host/wwwroot/css/base.css @@ -0,0 +1,2152 @@ +/* 首页 */ +body { + margin: 0; + padding: 0; +} + +.user input::-webkit-input-placeholder { + color: #ccc; +} + +.user input:-moz-placeholder { + color: #ccc; +} + +.user input::-moz-placeholder { + color: #ccc; +} + +.user input:-ms-input-placeholder { + color: #ccc; +} + +.pwd input::-webkit-input-placeholder { + color: #ccc; +} + +.pwd input:-moz-placeholder { + color: #ccc; +} + +.pwd input::-moz-placeholder { + color: #ccc; +} + +.pwd input:-ms-input-placeholder { + color: #ccc; +} + +.yzm input::-webkit-input-placeholder { + color: #ccc; +} + +.yzm input:-moz-placeholder { + color: #ccc; +} + +.yzm input::-moz-placeholder { + color: #ccc; +} + +.yzm input:-ms-input-placeholder { + color: #ccc; +} + +.mask { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, .6); + z-index: 998; + display: none; +} + +.main { + position: fixed; + width: 320px; + height: 400px; + background: #fff; + z-index: 999; + left: 50%; + margin-left: -160px; + top: 50%; + margin-top: -200px; + display: none; +} + +.main_reg { + position: fixed; + width: 320px; + height: 460px; + background: #fff; + z-index: 999; + left: 50%; + margin-left: -160px; + top: 50%; + margin-top: -230px; + display: none; +} + +.main_find { + position: fixed; + width: 320px; + height: 460px; + background: #fff; + z-index: 999; + left: 50%; + margin-left: -160px; + top: 50%; + margin-top: -230px; + display: none; +} + +.logoLogin { + padding: 20px 0 0 0; + text-align: center; +} +.logoLogin img { + width:70%; +} +.award { + text-align: center; +} + +.zhiyin { + text-align: center; +} + +.user, +.pwd { + width: 100%; + text-align: center; + position: relative; + margin: 20px 0; +} + +.yzm { + width: 100%; + position: relative; + padding-left: 46px; +} + +.user input, +.pwd input { + width: 230px; + height: 40px; + line-height: 40px; + border-left: none; + border-right: none; + border-top: none; + border-bottom: 1px solid #d7d7d7; + text-indent: 30px; + outline: none; +} + +.yzm input { + width: 130px; + height: 40px; + line-height: 40px; + border-left: none; + border-right: none; + border-top: none; + border-bottom: 1px solid #d7d7d7; + text-indent: 30px; + outline: none; +} + +.user img, +.pwd img, +.yzm img { + width: 30px; + position: absolute; + left: 50px; + top: 5px; +} + +.fuzhu { + display: flex; + flex-direction: row; + width: 240px; + margin: 0 auto; + justify-content: space-between; +} + +.grayText { + color: #ccc; +} + +.btnClose, +.regClose { + position: absolute; + top: 5px; + right: 5px; +} + +.tixing { + color: #ccc; + font-size: 12px; + width: 100%; + text-align: center; + padding-top: 20px; +} + +.btn-login { + width: 80%; + height: 40px; + line-height: 40px; + padding: 0; + margin: 0; + background: #2956b4; + color: #fff; + text-align: center; + border: none; + border-radius: 0px; +} +.btn-reset { + width: 80%; + height: 40px; + line-height: 40px; + padding: 0; + margin: 0; + background: #2956b4; + color: #fff; + text-align: center; + border: none; + border-radius: 0px; +} + +.denglu { + text-align: center; +} + +.sideBar { + position: fixed; + bottom: 300px; + right: 0; + z-index: 1000; + display: flex; + flex-direction: column; + +} + + .sideBar .item { + width: 40px; + height: 60px; + background: #f90; + text-align: center; + position: relative; + } +.kefu_tit { + color: #fff; + font-size: 12px; + border-bottom: 1px solid #fff; +} + +.sideBar .item img { + width: 100%; + cursor: pointer; +} + + + +.side_kefu .item { + width: 100px; + height: 120px; +} + +.side_kefu .item span { + display: block; +} + +.side_kefu img { + width: 100px !important; +} + + + +.bg img { + width: 100%; +} + +.banner { + margin: 0; + padding: 0; + position: relative; +} + +.nav { + position: absolute; + top: 0; + width: 100%; +} + +.navList { + list-style: none; +} + +.navList li { + float: left; + margin: 0 20px; + height: 60px; + line-height: 60px; + color: #fff; +} + +.navList li a { + color: #fff; + text-decoration: none; + font-size: 18px; +} + +.navList li button { + width: 120px; +} + +.kami { + background: none; + color: #fff; +} + +.threeButton { + position: absolute; + top: 58%; + width: 100%; + z-index: 99; + display: none; +} + +.threeButton button { + width: 140px; + height: 40px; +} + +.swiper-slide button { + width: 200px; +} +.modelTit{ + font-size: 40px; + position: absolute; + z-index: 2; + display: block; + bottom: 20px; +} +.youshiTit{ + font-size: 40px; + position: absolute; + z-index: 2; + top: 180px; + width: 100%; + text-align: center; + color: #fff; + left: 0; +} +.dituTit{ + font-size: 40px; + position: absolute; + z-index: 2; + bottom: 0; + color: #000000; + display: block; + left: 0; + top: 100px; +} +.useTit{ + font-size: 40px; + position: absolute; + z-index: 2; + top: 150px; + width: 100%; + text-align: center; + color: #fff; +} +.helpTit{ + font-size: 40px; + position: absolute; + z-index: 2; + top:100px; + width: 100%; + text-align: center; + color: #000; + left: 0; +} +.youshiTit{ + width: 100%; + position: absolute; + top: 130px; + left: 0; + text-align: center; + font-size: 40px; + color: #fff; +} +.tit_cp,.tit_map,.tit_news{ + position: relative; +} +.tit_youshi span:first-child{ + position: absolute; + width: 1200px; + left: 50%; + margin-left: -600px; + top: 80px; +} +.tit_cp span,.tit_map span,.tit_news span,.tit_youshi span{ + width: 100%; +} +.tit_cp img,.tit_youshi img,.tit_news img,.tit_map img{ + width: 100%; +} +.tit_news { + width: 1100px; +} +.tit { + padding: 50px 0 20px 0; +} +.chanpinText { + text-align: center; +} +.pro{ + padding-bottom: 50px; + background:#f5f5f5; +} +.swiper-container { + width: 100%; + height: 100%; + padding: 0 50px; +} + +.swiper-slide { + margin-top: 30px; + margin-bottom: 70px; + text-align: center; + font-size: 8px; + background: #fff; + display: flex; + flex-direction: column; + align-items: center; + border: 1px solid #f5f5f5; + padding-top: 10px; +} + +.swiper-slide p { + padding: 10px 40px; +} + +.swiper-slide:hover { + -moz-box-shadow: 2px 2px 10px #7D7D7D; + -webkit-box-shadow: 2px 2px 10px #7D7D7D; + box-shadow: 2px 2px 10px #7D7D7D; +} + +.chakan { + color: #7d96b3; +} + +.titCard { + font-size: 24px; + font-weight: bold; + color: #3154a3; + margin-top:20px; + +} + +.youshiBg img { + width: 100%; +} + +.youshi { + position: relative; + margin: 0; + padding: 0; +} + +.map img { + width: 100%; +} + +.d1 { + position: absolute; + z-index: 997; + top: 30%; + width: 100%; + text-align: center; +} +.d2, +.d3, +.d4, +.d5, +.d6, +.d1 { + display: none; +} + +.d1 img { + width: 800px; +} +.dailiImg{ + position: absolute; + left: 50%; + margin-left: -600px; + width: 1200px; + top: 100px; +} +.useBg img { + width: 100%; +} + +.use { + margin: 0; + padding: 0; + position: relative; +} + +.d_use { + position: absolute; + z-index: 999; + width: 100%; + text-align: center; + display: none; + top: 36%; +} + +.d_use img { + width: 1200px; +} + +.logo img { + width: 80%; + padding: 20px 0 0 20px; +} + +.btnKm { + background: none; + color: #fff; + border-radius: 0px; +} + +.btn-primary { + border-radius: 0px; + background: #406ebb; + /* Old browsers */ + background: -moz-linear-gradient(left, #406ebb 0%, #2f50a0 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(left, #406ebb 0%, #2f50a0 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to right, #406ebb 0%, #2f50a0 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#406ebb', endColorstr='#2f50a0', GradientType=1); + /* IE6-9 */ + +} + +.btn-danger { + border: none; + border-radius: 0px; + background: #e79482; + /* Old browsers */ + background: -moz-linear-gradient(left, #e79482 0%, #d0755f 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(left, #e79482 0%, #d0755f 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to right, #e79482 0%, #d0755f 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e79482', endColorstr='#d0755f', GradientType=1); + /* IE6-9 */ + +} + +.swiper-button-prev, +.swiper-container-rtl .swiper-button-next, +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev { + background-image: none !important; +} + +.imgYoushi { + position: absolute; + top: 250px; + width: 100%; +} + +.imgYoushi img { + width: 660px; +} + +.reg { + background: none; + border-color: #35529c; + margin-right: 10px; +} + +.footer { + background: #141f35; + padding-bottom: 40px; + border-bottom: 1px solid #343b43; +} + +.cp { + margin: 0; + padding: 0; + list-style: none; +} + + .cp li { + float: left; + /*height: 40px; + line-height: 40px;*/ + height: 25px; + line-height: 25px; + color: #fff; + margin: 10px 30px; + margin-left: 0; + } + +.cp li a { + color: #fff; + text-decoration: none; +} + +.cpTit { + font-size: 16px; + color: #fff; + margin: 50px 30px 20px 0px; +} + +.ewm { + padding-top: 10px; + color: #fff; + +} + +.sao { + color: #fff; +} + +.newsCon { + background: #f7f8fa; +} + +.breadcrumb { + background: none; + padding-top: 20px; +} + +.breadcrumb li a { + color: #000000; + font-size: 16px; +} + +.preNext { + padding: 40px 30px; + border-top: 1px solid #f5f5f5; + background: #fff; +} + +.preNext a { + color: #666; +} + +.articleTit { + padding: 30px; + background: #fff; + border-bottom: 1px solid #ccc; +} + +.articleCon { + padding: 30px; + background: #fff; + text-align: center; +} + +.copyr { + padding: 20px 0; + background: #141f35; + color: #fff; +} + .copyr a { + color:#fff; + } +.newsArea { + padding-bottom: 50px; +} + +.logoD img { + width: 30px; +} + +.newsList { + position: relative; + border-bottom: 1px solid #294298; +} + +.model { + display: flex; + flex-direction: row; +} + +.model .item { + padding: 10px 0; +} + +.model .item:last-child { + margin-left: 30px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.model .item a { + color: #000000; +} + +.listcon { + padding: 20px 0; +} + +.nav-tabs>li.active>a, +.nav-tabs>li.active>a:focus, +.nav-tabs>li.active>a:hover { + color: #294298; + cursor: default; + background-color: #fff; + border: 1px solid #294298; + border-bottom-color: transparent; +} + +.nav-tabs>li>a { + color: #222; +} + +.more img { + width: 103px !important; +} + +.navList li:hover { + border-bottom: 2px solid #fff; +} + +.newsList li img { + width: 20px; + margin-right: 5px; +} + +/* 购买页面 */ +.nav_buy { + position: relative; + background-color: #0D1322; + background-image: linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -webkit-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -moz-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -o-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); +} + +.navList_buy li a { + color: #fff; +} + +.reg_buy { + color: #fff; +} + +.ad { + margin: 0; + padding: 0; +} + +.ad img { + width: 100%; +} + +.cpshow { + display: flex; + flex-direction: row; + flex-wrap: wrap; +} + +.cpshow .item { + width: 20%; + margin: 10px 0; + text-align: center; + font-size: 16px; + font-weight: bold; + position: relative; + padding-top: 20px; +} + +.kuang { + border: 1px solid #1d3997 !important; + box-shadow: 8px 8px 8px #888888; +} + +.check { + position: absolute; + top: 0; + right: 0; + z-index: 99; + width: 30px; + display: none; +} + +.cpimg img { + width: 80px; +} + +.bg_taocan { + /*background: url(../img/th.png) no-repeat;*/ + background: cover; + width: 90%; + background-position: center; + color: #fff; + border-radius: 6px; + padding: 20px; +} + +.stepOne { + + padding: 20px; + border-radius: 10px; + margin-top: 30px; + margin-bottom: 50px; +} + +.intro { + padding-top: 20px; +} + +.intro p:first-child { + font-size: 18px; +} + +.twoButton { + padding-top: 40px; +} + +.twoButton button:last-child { + margin-top: 10px; +} + +.btn-warning { + background-color: #F19B5B; + background-image: linear-gradient(147deg, #F19B5B 0%, #EC6D58 74%); + background-image: -webkit-linear-gradient(147deg, #F19B5B 0%, #EC6D58 74%); + background-image: -moz-linear-gradient(147deg, #F19B5B 0%, #EC6D58 74%); + background-image: -o-linear-gradient(147deg, #F19B5B 0%, #EC6D58 74%); + border: 0px; + border-radius: 0px; +} + +.photo { + padding-top: 20px; +} + +.photoK { + border: 1px solid #fff; + width: 150px; + padding: 20px; + margin: 0 auto; + border-radius: 6px; + background: #fff; + color: #0a1a4f; +} + +.nameSmall { + padding: 20px 0; + color: #666; +} + +.card { + width: 95%; + margin: 0 auto; + display: flex; + flex-direction: row; +} + +.card .item { + width: 150px; + padding-top: 20px; + margin: 0 20px; + text-align: center; + border: 1px solid #ccc; + border-radius: 5px; + position: relative; +} + +.price { + color: #ee7a6a; + font-size: 28px; + font-weight: bold; + margin-right: 5px; +} + +.tianka { + font-size: 20px; + font-weight: bold; + color:#F19B5B +} + +.yuanjia { + text-decoration: line-through; + color: #ccc; +} + +.qixian { + color: #fff; + /*border-top: 1px solid #f5f5f5;*/ + padding-top: 5px; +} + +.cardCheck { + position: absolute; + top: 0; + right: 0; + z-index: 99; + width: 30px; + display: none; +} + +.youhui { + color: #ec6e58; + width: 90%; + text-align: center; + border: 1px solid #ccc; + padding: 10px 0; + margin: 20px auto; + border-radius: 4px; + font-size: 25px; + font-weight:bold; +} + +.tijiao { + width: 100%; + text-align: center; + padding: 50px 0; +} +.tijiao-tip { + width: 100%; + text-align: center; + padding: 10px 0; +} +.lingqu { + padding: 10px 0; +} + +.tijiao button { + width: 300px; + height:50px; + line-height:50px; + padding:0; +} + +.top { + background: #f7f8fa; + padding: 60px 0; +} + +.selectCard { + width: 80%; + display: flex; + flex-direction: row; + border-radius: 5px; + padding:16px 20px; + background: url(../img/kuangRed.png) no-repeat; + background-position: left top; + background-size: 100%; +} + +.selectCard .item { + text-align: center; + width: 33.3%; +} +.selectCard .item:first-child{ + width: 43%; + border-right: 1px solid #ccc; +} +.selectPhoto img { + width: 80px; +} + +.sname { + font-size: 22px; +} + +.sprice { + color: #ccc; +} + +.stime { + color: #666; + /* border-top: 1px dashed #ccc; */ + padding-top: 20px; +} + +.zongjia span { + font-size: 52px; + color: #ee7a6a; +} + +.zongjia { + padding-top: 20px; +} + +.tishi { + color: red; + /*font-size: 8px;*/ +} +.tishika{ + + padding: 20px 0; + +} +.shuru input { + width: 380px; + height: 40px; + line-height: 40px; + outline: none; +} + +.shuruname, +.chongfu { + height: 40px; + line-height: 40px; +} + +.biaodan { + padding-top: 30px; +} + +.cishu { + color: #ccc; + font-size: 10px; + text-align: center; +} + +.btnlingqu { + display: flex; + flex-direction: column; + padding-top: 40px; +} + +.lingqu { + padding-top: 10px; + padding-bottom: 40px; +} + +input { + padding-left: 10px; +} + +.reg_tab { + display: flex; + flex-direction: row; + width: 200px; + margin: 0 auto; +} + +.reg_tab .item { + width: 100px; + text-align: center; + color: #ccc; +} + +.zhuce { + border-bottom: 1px solid #ccc; + height: 100px; + line-height: 100px; +} + +.t2 { + display: none; +} + +.cu { + font-weight: bold !important; + color: #000000 !important; +} + +.t1 .row { + margin: 10px 0; +} + +.dan, +.pi { + cursor: pointer; + font-size: 18px; +} + +.regDan { + margin-top: 10px; + height: 30px; + line-height: 30px; +} + +.regDan input { + outline: none; + width: 360px; +} + +.buchang { + display: flex; + flex-direction: row; + position: relative; + margin-top: 12px; +} + +.buchang .item { + border: 1px solid #ccc; + width: 40px; + height: 30px; + line-height: 30px; + text-align: center; +} + +.zhifufangshi img { + width: 20px; +} + +.dropdown-toggle { + width: 360px; + border-radius: 0px; +} +.toolsBar .dropdown-toggle{ + width: auto; +} +.t1 .row { + height: auto; + line-height: 60px; +} + +.t2 .row { + height: auto; + line-height: 60px; +} + +.t1 { + padding-top: 50px; +} + +.layui-form-item img { + width: 20px; +} + +.blueText { + color: #35539d; + font-size: 18px; + font-weight: bold; +} + +.yue { + width: 30px !important; + height: 30px !important; + line-height: 30px !important; +} + +.shuoming { + color: #ccc; + height: 20px; + line-height: 20px; + width: 100%; + text-align: center; + padding: 10px 0; + margin-top: 20px; + margin-bottom: 20px; +} + +.jinggao { + color: red; +} + +.num { + display: flex; + flex-direction: row; +} + +.num .item { + padding: 2px 5px; + background: #294298; + color: #fff; + font-weight: bold; + margin: 0 2px; + text-align: center; +} + +.num .item:first-child { + margin-left: 0; +} + +.lianjie { + position: absolute; + top: 280px; + width: 100%; +} + +.modelMap { + position: relative; +} + +/* 淘宝 */ +.tAd img, +.tPeitu img { + width: 100%; +} + +.tAd { + margin: 0; + padding: 0; +} + +.tintro { + background: #f7f8fa; + color: #666; + padding: 50px 0; +} + +.ttishi { + padding: 30px 0; + color: #666; +} + +.tlink img { + width: 90%; +} + +.tlink { + padding-bottom: 50px; +} + +/* 软件下载 */ +.softBg { + height: 200px; + background-color: #0D1322; + background-image: linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -webkit-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -moz-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); + background-image: -o-linear-gradient(180deg, #0D1322 0%, #16223C 50%, #0D1322 100%); +} + +.simg { + margin-top: 50px; +} + +.simg img { + width: 100%; +} + +.sintro { + color: #fff; + padding: 20px 0; +} + +.jiaocheng { + color: #fff; + margin-top: 130px; + position: relative; + display: block; +} + +.smodel { + width: 200px; + display: flex; + flex-wrap: wrap; +} + +.smodel .item { + width: 100px; + border: none !important; +} + +.smodel img { + width: 80%; +} + +.softName { + font-weight: bold; + font-size: 18px; + height: 100px; + +} + +.btn-sdefault { + background: #c1d0e4; + color: #000000; + border: 0; + border-radius: 0px; + width: 90px; + font-size: 12px; +} + +.btn-sdefault:hover { + background: #2956b4; + color: #fff; +} + +.soft { + display: flex; + flex-direction: row; + flex-wrap: wrap; + padding: 20px 0; +} + +.soft .sitem { + border: 1px solid #f5f5f5; + padding: 20px; + margin: 20px; +} + +.soft .sitem:hover { + -moz-box-shadow: 2px 2px 10px #7D7D7D; + -webkit-box-shadow: 2px 2px 10px #7D7D7D; + box-shadow: 2px 2px 10px #7D7D7D; +} + +.smodel p { + color: #ccc; + padding-top: 10px; +} + +/* 资讯 */ +.searchInput input { + width: 100%; + margin-top: 60px; + height: 40px; + line-height: 40px; + color: #666; + outline: none; +} + +.zxbz img { + margin-top: 40px; +} + +.searchBtn button { + margin-top: 60px; + background: #d45a48; + color: #fff; + border-radius: 0; + width: 150px; + border: none; + height: 40px; + line-height: 40px; + padding: 0; +} + +.hot { + color: #fff; + padding: 20px 0; +} + +.hot span { + margin: 0 10px; +} + +.conBg { + background: #f7f8fa; +} + +.fourModel { + display: flex; + flex-direction: row; +} + +.fourModel .item { + width: 23%; + text-align: center; + padding: 10px; + background: #fff; + margin: 20px 10px; + border-radius: 6px; +} + +.fourModel .item img { + width: 50%; +} + +.fourModel .item:hover { + -moz-box-shadow: 2px 2px 10px #7D7D7D; + -webkit-box-shadow: 2px 2px 10px #7D7D7D; + box-shadow: 2px 2px 10px #7D7D7D; +} + +.mylist { + background: #fff; + padding-top: 40px; +} + +.listUl { + padding: 10px 30px; + margin: 0; +} + +.listUl li { + list-style: none; + border-bottom: 1px solid #f5f5f5; + margin: 20px 0; +} + +.listUl li:first-child { + margin-top: 0; +} + +.newsTit { + display: flex; + flex-direction: row; +} + +.newsTit .item:first-child { + width: 90%; + color: #1f3b96; + font-size: 16px; +} + +.newsTit .item:last-child { + color: #ccc; +} + +.gaiyao { + color: #5E5E5E; + margin: 10px 0; +} + +.fenye { + padding: 30px 0; + text-align: center; +} + +.fenye ul li a { + color: #666; +} + +.fenyeActive { + background: #d75d4c !important; + color: #fff !important; +} +.fenyeActive2 { + background: #3157ad !important; + color: #fff !important; +} + +/* 线路表 */ +.btnZhilian { + border: 1px solid #fff; + height: 40px; + display: block; + width: 150px; + color: #fff; + line-height: 40px; + text-align: center; + margin-top: 60px; +} + +.btnZhilian img { + width: 30px; +} + +.xianlu { + display: flex; + flex-wrap: wrap; + flex-direction: row; + border-bottom: 1px solid #ccc; + padding-bottom: 30px; + margin-bottom: 30px; +} + + .xianlu .item { + width: 140px; + line-height: 40px; + height: 40px; + background: #d45a48; + color: #fff; + margin: 10px 20px; + text-align: center; + position: relative; + cursor: pointer; + } + +.xianlu .item img { + width: 20px; + position: absolute; + right: 0; + top: 0; + display: none; +} + +.xianluIntro { + padding: 20px 0; + color: #6a798e; + text-align:center; + font-size:22px; +} + +.blueLine { + border: 1px solid #1d3997; +} + +.daochu { + background: #3a714a; + color: #fff; + display: inline-block; + text-align: center; + width: 150px; + height: 34px; + line-height: 34px; + vertical-align: middle; + margin-left: 5px; + cursor: pointer; +} + +.daochu img { + width: 30px; +} + +.searchDq { + width: 50%; + margin-right: 20px; + height: 34px; + line-height: 34px; +} + +.miyao { + color: #6a798e; +} + +.fanwei { + color: #666; +} + +.xianluTable { + margin-bottom: 50px; +} + +.xianluTable tr, +.xianluTable tr td { + text-align: center; + border-top: none !important; +} + +.xianluTable th { + color: #6a798e; + text-align: center; + border-top: none !important; +} + +.xianluTable th img { + width: 24px; +} + +.table-striped>tbody>tr:nth-of-type(odd) { + background: #f6fafe; +} + +.greenT { + color: green; +} + +.blueT { + color: #1f3a94; +} + +.redT { + color: red; +} +/* 会员中心 */ +.leftArea{ + height: 100vh; + background: #232934; + color: #fff; + padding: 0; +} +.leftBar{ + display: flex; + flex-direction: column; +} +.leftBar .item{ + margin: 10px 0; + height: 60px; + line-height: 60px; + padding-left: 70px; +} +.leftBar .item img{ + margin-right: 10px; +} +.leftBar .item a{ + color: #fff; + text-decoration: none; +} +.clearMargin{ + margin: 0; + padding: 0; +} +.active_b{ + background: #2955b3; +} +.rightCon{ + background: #f7f8fb; +} +.zhanghu{ + background: #fff; + border-radius: 8px; + -moz-box-shadow: 2px 2px 10px #ccc; + -webkit-box-shadow: 2px 2px 10px #ccc; + box-shadow: 2px 2px 6px #ccc; + margin: 20px 0px; + height: 300px; + padding: 20px 20px; +} +.zhanghu2{ + background: #fff; + border-radius: 8px; + -moz-box-shadow: 2px 2px 10px #ccc; + -webkit-box-shadow: 2px 2px 10px #ccc; + box-shadow: 2px 2px 6px #ccc; + margin: 20px 0px; + padding: 20px 20px; + height: 31.25rem; +} +.lineBar{ + background: #3c5eb5; + width: 5px; + height: 30px; + display: inline-block; + vertical-align: middle; + margin-right: 10px; +} +.accout_tit{ + height: 40px; + line-height: 40px; + border-bottom: 1px solid #eee; + font-size: 18px; +} +.edit{ + text-align: right; + margin-top: 5px; + +} +.accoutLeft{ + border-right: 1px dashed #eee; +} +.xinxi{ + display: flex; + flex-direction: column; +} +.xinxi .item{ + height: 40px; + line-height: 40px; + color: #999; + font-size: 12px; +} +.xinxi2{ + display: flex; + flex-direction: column; +} +.xinxi2 .item{ + height: 40px; + line-height: 40px; + color: #999; + font-size: 12px; +} +.xinxi2 .item span{ + font-size: 16px; + color: #000000; +} +.myPhone{ + font-size: 20px !important; + color: #000000 !important; +} +.myPwd{ + color: #000000 !important; +} +.myPwd img{ + float: right; + margin-right: 30px; + margin-top: 10px; +} +.money{ + background: #f7f8fb; + padding: 30px 30px; + text-align: center; + width: 90%; + margin: 20px auto; + font-size: 18px; + border-radius: 10px; +} +.useCon{ + background: #f7f8fb; + padding: 30px 30px; + text-align: center; + width: 100%; + margin: 20px auto; + font-size: 18px; + border-radius: 10px; +} +.money span{ + color: #2a56b3; + font-size: 60px; + margin-left: 10px; +} +.useCon span{ + color: #2a56b3; + font-size: 60px; +} +.zhanghao{ + display: flex; + flex-direction: column; + padding-top: 20px; +} +.zhanghao .item{ + height: 40px; + line-height: 40px; + text-align: center; +} +.zhanghao .item:nth-last-of-type(even){ + color: #ea7a22; + font-size: 24px; +} +.zhanghao .item:nth-last-of-type(odd){ + height: 60px; +} +.xiaofeiArea{ + padding-top: 2%; +} +.xiaofei{ + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; +} +.xiaofei .item{ + width: 30%; + height: 100px; + color: #fff; + font-size: 42px; + text-align: right; + padding-right: 20px; + margin-bottom: 10px; +} +.xiaofei .item p:last-child{ + font-size: 16px; +} +.x1{ + background: #6DDAF9; + background-image: url(../img/c1.png); + background-repeat: no-repeat; + background-position: left bottom; + border-radius: 10px; +} +.x2{ + background: #efa383; + border-radius: 10px; + background-image: url(../img/c2.png); + background-repeat: no-repeat; + background-position: left bottom; +} +.x3{ + background: #b0a1f4; + border-radius: 10px; + background-image: url(../img/c3.png); + background-repeat: no-repeat; + background-position: left bottom; +} +.bennian{ + position: relative; + width: 100%; + height: 210px; + background: #5272f4; + text-align: right; + border-radius: 10px; + background-image: url(../img/nian.png); + background-repeat: no-repeat; + background-position: left top; +} +.bennianxiaofei{ + position: absolute; + right: 20px; + bottom: 20px; +} +.bennian p{ + color: #fff; + font-size: 48px; + margin: 0; + padding: 0; +} +.bennian p:last-child{ + font-size: 16px; +} +.toutiao{ + list-style: none; + margin: 0; + padding: 20px 30px; +} +.toutiao li{ + height: 36px; + line-height: 36px; + list-style: disc; +} +.toutiao li a{ + color: #000000; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + display: inline-block; + float: left; + width: 80%; +} +.toutiao li span{ + color: #ccc; + float: right; +} +.toolsBar{ + display: flex; + flex-direction: row; + padding: 20px 30px; +} +.toolsBar .item{ + margin: 0 10px; +} + +.bianhao{ + height: 34px; + line-height: 34px; +} +.table_person tr th{ + background: #2955b3; + color: #fff; + text-align: center; +} +.table_person tr td{ + border-top: none !important; + text-align: center; +} +.table_person tr:nth-child(even){ + background: #fff; +} +.wanshan{ + border: 1px solid orange; + height: 40px; + line-height: 40px; + text-align: center; + background: #fffdf7; + margin: 10px 0; +} +.wanshan img{ + width: 30px; +} +.xuTui img{ + width: 20px; +} +.xufeiBar{ + padding:10px 20px; +} +.xuTui button:last-child{ + margin-left: 10px; +} +.change{ + width: 16px; +} +.quan{ + display: flex; + width: 240px; + height: 210px; + background: url(../img/quan.png) no-repeat top; + background-size:cover; + flex-direction: column; + margin-top: 50px; +} +.quan .item{ + color: #fff; + height: 30px; + line-height: 30px; + padding-left: 10px; +} +.quan .item:first-child{ + padding: 0 30px; + height: 60px; + line-height: 60px; +} +.couponName{ + float: right; +} +.quan .item:last-child{ + padding: 20px 30px; + color: #000000; + text-align: center; +} +.couponPrice{ + font-size: 20px; + margin-left: 10px; +} +.coupon{ + padding-bottom: 50px; +} +.gray { + -webkit-filter: grayscale(100%); + -moz-filter: grayscale(100%); + -ms-filter: grayscale(100%); + -o-filter: grayscale(100%); + + filter: grayscale(100%); + + filter: gray; +} + +.payMask { + background: rgba(0,0,0,.6); + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + z-index: 998; + display: none; +} + +.payCon { + width: 800px; + height: 450px; + left: 50%; + margin-left: -400px; + top: 50%; + margin-top: -200px; + background: #fff; + border-radius: 10px; + position: absolute; + z-index: 999; + padding: 30px; +} + +.payClose { + position: absolute; + top: 10px; + right: 10px; +} + +.payTit { + text-align: center; + padding: 20px 0; + font-size: 18px; +} + + .payTit img { + margin-right: 10px; + } + +.leftBorder { + border-left: 1px dashed #ccc; +} + + .leftBorder p { + height: 30px; + line-height: 30px; + } + +.payPrice { + margin: 20px 0; +} + + .payPrice span { + font-size: 48px; + margin: 20px 0; + } + +.cursor { + cursor: pointer; +} +/* 2020.3.15 */ +.xinwen { + list-style: none; + padding: 0; +} + + .xinwen li { + width: 33.33%; + float: left; + height: 40px; + line-height: 40px; + } + + .xinwen li a { + color: #000000; + float: left; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + display: inline-block; + width: 70%; + } + + .xinwen li span { + color: #ccc; + float: right; + margin-right: 30px; + } + +.exitBox { + display: none; + flex-direction: column; + background: #5f7086; + border-radius: 10px; + padding: 5px 8px; + z-index:999; + margin-left: -21px; + position:absolute; +} + +.exitBox .item { + height: 40px !important; + line-height: 40px !important; +} + +.btnUser { + cursor: pointer; +} + +.exitBox a { + font-size: 14px !important; +} + +.navList li:last-child { + border-bottom: none; +} + +.side_q { + position: absolute; + z-index: 999; + right: 40px; + top: 0; + display:none; + width: 280px; + background: #f5f5f5 !important; +} +.side_q .item { + float:left; + width: 50%; + background:#f5f5f5 !important; + padding:10px; +} +.ileft, .iright { + float: left; + +} +.ileft { + width:20%; +} +.iright { + width:80%; +} +.ileft img{ + width:24px !important; + +} +.side_gzh { + padding-top: 10px; + position: absolute; + top: 0; + right: 40px; + width: 240px; + height: 220px; + display: none; + background: #f5f5f5; + z-index: 999; +} + + .side_gzh p img { + width: 110px !important; + height: 110px !important; + } + +.side_tel { + padding-top:10px; + position: absolute; + right: 40px; + width: 180px !important; + height: 100px !important; + text-align: center; + background: #f5f5f5; + color: #000000; + display: none; + z-index: 999; + top: 0; +} + +.side_kefu { + position: absolute; + z-index: 999; + right: 40px; + top: 0; + display: flex; + flex-direction: column; + display: none; + width: 260px; + background: #f5f5f5; + padding-bottom: 20px; +} +.popmask { + display:none; + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + z-index: 1; + background-color: rgba(0, 0, 0, 0.2); +} +.jieshao { + height:115px; +} +.newProduct { + list-style: none; + width: 100%; + position: relative; +} + .newProduct li { + width: 14%; + float: left; + margin:10px 1%; + background:#fff; + text-align:center; + + cursor:pointer; + } + .newProduct li p { + padding:10px; + } + .newProduct li:hover { + box-shadow: 0 10px 10px #ccc; + transform: translateY(-10px); + transition: all 0.5s; + transition-timing-function: linear; + } +.chakan a { + color: #d17761; +} +.gm { + width: 80%; + height: 40px; + border-radius: 8px; + background-color: #FAD961; + background-image: linear-gradient(20deg,#FAD961 0%,#F76B1C 100%); + background-image: -webkit-linear-gradient(20deg,#FAD961 0%,#F76B1C 100%); + background-image: -moz-linear-gradient(20deg,#FAD961 0%,#F76B1C 100%); + background-image: -o-linear-gradient(20deg,#FAD961 0%,#F76B1C 100%); + border:none; +} + +.buyBar { + width:100%; + display: flex; + flex-direction: row; + background:url(../img/bg_buy.png) no-repeat; + height:80px; + background-size:cover; + padding-top:30px; +} + .buyBar .item { + width:50%; + text-align:center; + } +.ck a{ + color:#fff; + text-decoration:underline; +} \ No newline at end of file diff --git a/Host/wwwroot/css/bootstrap-datetimepicker.min.css b/Host/wwwroot/css/bootstrap-datetimepicker.min.css new file mode 100644 index 0000000..5950ad2 --- /dev/null +++ b/Host/wwwroot/css/bootstrap-datetimepicker.min.css @@ -0,0 +1,5 @@ +/*! + * Datetimepicker for Bootstrap 3 + * version : 4.17.47 + * https://github.com/Eonasdan/bootstrap-datetimepicker/ + */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} \ No newline at end of file diff --git a/Host/wwwroot/css/bootstrap.min.css b/Host/wwwroot/css/bootstrap.min.css new file mode 100644 index 0000000..ed3905e --- /dev/null +++ b/Host/wwwroot/css/bootstrap.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/Host/wwwroot/css/flash.css b/Host/wwwroot/css/flash.css new file mode 100644 index 0000000..c33d7c4 --- /dev/null +++ b/Host/wwwroot/css/flash.css @@ -0,0 +1,189 @@ +.nei { + position: absolute; + width: 40px; + height: 40px; + border-radius: 100%; + background: #294298; + z-index: 2; + top: 10px; + left: 10px; + opacity:0.6; +} +.wai { + position: absolute; + width: 60px; + height: 60px; + border-radius: 100%; + z-index: 1; + background: #9baff3; + opacity:0.8; +} +.nei2 { + position: absolute; + width: 20px; + height: 20px; + border-radius: 100%; + background: #294298; + z-index: 2; + top: 10px; + left: 10px; + opacity: 0.6; +} + +.wai2 { + position: absolute; + width: 40px; + height: 40px; + border-radius: 100%; + z-index: 1; + background: #9baff3; + opacity: 0.8; +} +/*.animation { + + -webkit-animation: twinkling 2.1s infinite ease-in-out; + animation: twinkling 2.1s infinite ease-in-out; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +.animation2 { + + -webkit-animation: twinkling 2.1s infinite ease-in-out; + animation: twinkling 2.1s infinite ease-in-out; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +}*/ + +@-webkit-keyframes twinkling { + 0% { + opacity: 0.2; + filter: alpha(opacity=20); + -webkit-transform: scale(1); + } + + 50% { + opacity: 0.5; + filter: alpha(opacity=50); + -webkit-transform: scale(1.12); + } + + 100% { + opacity: 0.2; + filter: alpha(opacity=20); + -webkit-transform: scale(1); + } +} + +@keyframes twinkling { + 0% { + opacity: 0.2; + filter: alpha(opacity=20); + -webkit-transform: scale(1); + } + + 50% { + opacity: 0.5; + filter: alpha(opacity=50); + -webkit-transform: scale(1.12); + } + + 100% { + opacity: 0.2; + filter: alpha(opacity=20); + -webkit-transform: scale(1); + } +} +.yuan1{ + position:absolute; + top:60%; + left:55%; +} +.yuan2 { + position: absolute; + top: 70%; + left: 35%; +} +.yuan3 { + position: absolute; + top: 76%; + left: 55%; +} +.yuan4 { + position: absolute; + top: 46%; + left: 66%; +} +.yuan5 { + position: absolute; + top: 68%; + left: 54%; +} +.yuan6 { + position: absolute; + top: 63%; + left: 45%; +} +.yuan7 { + position: absolute; + top: 50%; + left: 70%; +} +.yuan8 { + position: absolute; + top: 65%; + left: 25%; +} +.yuan9 { + position: absolute; + top: 78%; + left: 45%; +} + + +.mapCicle { + width: 18px; + height: 18px; + /*transform: translate3d(0px, 0px, 0px);*/ + position: relative; + outline: none; + background-color: #1d42a6; + box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.8); + border-radius: 100%; + transform-origin: 0 0; + display: block; + opacity: 0.8; +} + + .mapCicle::after { + content: ""; + -webkit-border-radius: 100%; + border-radius: 100%; + height: 300%; + width: 300%; + position: absolute; + margin: -100% 0 0 -100%; + box-shadow: 0 0 2px 2px #1d42a6; + animation: pulsate 1s ease-out; + animation-iteration-count: infinite; /*无穷反复*/ + animation-delay: 1.1s; + } + +@keyframes pulsate { + 0% { + transform: scale(0.1, 0.1); + opacity: 0; + filter: alpha(opacity=0); + } + + 50% { + opacity: 1; + filter: none; + } + + 100% { + transform: scale(1.4, 1.4); + opacity: 0; + filter: alpha(opacity=0); + } +} \ No newline at end of file diff --git a/Host/wwwroot/css/layui.css b/Host/wwwroot/css/layui.css new file mode 100644 index 0000000..5a10469 --- /dev/null +++ b/Host/wwwroot/css/layui.css @@ -0,0 +1,2 @@ +/** layui-v2.5.6 MIT License By https://www.layui.com */ + .layui-inline,img{display:inline-block;vertical-align:middle}h1,h2,h3,h4,h5,h6{font-weight:400}.layui-edge,.layui-header,.layui-inline,.layui-main{position:relative}.layui-body,.layui-edge,.layui-elip{overflow:hidden}.layui-btn,.layui-edge,.layui-inline,img{vertical-align:middle}.layui-btn,.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-elip,.layui-form-checkbox span,.layui-form-pane .layui-form-label{text-overflow:ellipsis;white-space:nowrap}.layui-breadcrumb,.layui-tree-btnGroup{visibility:hidden}blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{border:none}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h4,h5,h6{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:24px;font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:1px;margin:10px 0;border:0;clear:both}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{*display:inline;*zoom:1}.layui-edge{display:inline-block;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=256);src:url(../font/iconfont.eot?v=256#iefix) format('embedded-opentype'),url(../font/iconfont.woff2?v=256) format('woff2'),url(../font/iconfont.woff?v=256) format('woff'),url(../font/iconfont.ttf?v=256) format('truetype'),url(../font/iconfont.svg?v=256#layui-icon) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{width:1140px;margin:0 auto}.layui-header{z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:absolute;left:200px;right:0;top:0;bottom:0;z-index:998;width:auto;overflow-y:auto;box-sizing:border-box}.layui-layout-body{overflow:hidden}.layui-layout-admin .layui-header{background-color:#23262E}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:fixed;top:60px;bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;height:44px;line-height:44px;padding:0 15px;background-color:#eee}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;padding:0 15px;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:'';display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:768px){.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:750px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:970px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1170px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:22px;border-left:5px solid #009688;border-radius:0 2px 2px 0;background-color:#f2f2f2}.layui-quote-nm{border-style:solid;border-width:1px 1px 1px 5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:1px 0 0}.layui-field-box{padding:10px 15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#e2e2e2}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5FB878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#666}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#f2f2f2;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:22px;color:#666}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-bg-black,.layui-bg-blue,.layui-bg-cyan,.layui-bg-green,.layui-bg-orange,.layui-bg-red{color:#fff!important}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #E6E6E6;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-form-label,.layui-form-mid,.layui-form-select,.layui-input-block,.layui-input-inline,.layui-textarea{position:relative}.layui-bg-red{background-color:#FF5722!important}.layui-bg-orange{background-color:#FFB800!important}.layui-bg-green{background-color:#009688!important}.layui-bg-cyan{background-color:#2F4056!important}.layui-bg-blue{background-color:#1E9FFF!important}.layui-bg-black{background-color:#393D49!important}.layui-bg-gray{background-color:#eee!important;color:#666!important}.layui-badge-rim,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#e6e6e6}.layui-timeline-item:before,hr{background-color:#e6e6e6}.layui-text{line-height:22px;font-size:14px;color:#666}.layui-text h1,.layui-text h2,.layui-text h3{font-weight:500;color:#333}.layui-text h1{font-size:30px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text a:not(.layui-btn){color:#01AAED}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text em,.layui-word-aux{color:#999!important;padding:0 5px!important}.layui-btn{display:inline-block;height:38px;line-height:38px;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border:none;border-radius:2px;cursor:pointer}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{margin-right:3px;font-size:18px;vertical-align:bottom;vertical-align:middle\9}.layui-btn-primary{border:1px solid #C9C9C9;background-color:#fff;color:#555}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1E9FFF}.layui-btn-warm{background-color:#FFB800}.layui-btn-danger{background-color:#FF5722}.layui-btn-checked{background-color:#5FB878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border:1px solid #e6e6e6;background-color:#FBFBFB;color:#C9C9C9;cursor:not-allowed;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-sm i{font-size:16px!important}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:14px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#C9C9C9;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #c9c9c9}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#D2D2D2!important}.layui-input:focus,.layui-textarea:focus{border-color:#C9C9C9!important}.layui-textarea{min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#FF5722!important}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #d2d2d2;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f2f2f2;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5FB878;color:#fff}.layui-form-checkbox,.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-checkbox,.layui-form-checkbox *,.layui-form-switch{display:inline-block;vertical-align:middle}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg);margin-top:-3px\9}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;height:30px;line-height:30px;margin-right:10px;padding-right:30px;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5FB878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5FB878}.layui-form-checked i,.layui-form-checked:hover i{color:#5FB878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#666}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5FB878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5FB878!important;background-color:#5FB878;color:#fff}.layui-checkbox-disbaled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2}.layui-checkbox-disbaled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5FB878;background-color:#5FB878}.layui-checkbox-disbaled,.layui-checkbox-disbaled i{border-color:#e2e2e2!important}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disbaled span{background-color:#e2e2e2!important}.layui-checkbox-disbaled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio,.layui-form-radio *{display:inline-block;vertical-align:middle}.layui-form-radio{line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio>i:hover,.layui-form-radioed>i{color:#5FB878}.layui-radio-disbaled>i{color:#e2e2e2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#FBFBFB;overflow:hidden;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0 1px 0 0}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #e2e2e2}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393D49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#e2e2e2;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #e2e2e2}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-flow-more a *,.layui-laypage input,.layui-table-view select[lay-ignore]{display:inline-block}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-table,.layui-table-view{margin:10px 0}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;background-color:#fff;color:#666}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr,.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#e6e6e6}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0 0 1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0 1px 0 0}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding:15px 30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:40px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{font-size:12px;padding:5px 10px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:20px;line-height:20px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view .layui-table{position:relative;width:auto;margin:0}.layui-table-view .layui-table[lay-skin=line]{border-width:0 1px 0 0}.layui-table-view .layui-table[lay-skin=row]{border-width:0 0 1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:5px 0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0 0 1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-cell,.layui-table-tool-panel li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.layui-table-tool-panel li{padding:0 10px;line-height:30px;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%;padding-left:28px}.layui-table-tool-panel li:hover{background-color:#f2f2f2}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0 0 0 1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#666}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#666}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:28px;line-height:28px;padding:0 15px;position:relative;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01AAED}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{padding:0;text-align:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:0 -1px 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0 0 0 1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0 0 1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-page,.layui-table-total{border-width:1px 0 0;margin-bottom:-1px;overflow:hidden}.layui-table-page{position:relative;width:100%;padding:7px 7px 0;height:41px;font-size:12px;white-space:nowrap}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-7px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;width:100%;height:100%;padding:0 14px 1px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15)}.layui-table-edit:focus{border-color:#5FB878!important}select.layui-table-edit{padding:0 0 0 10px;border-color:#C9C9C9}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0 0 0 1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-44px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#666}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#666;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-drag,.layui-upload-form,.layui-upload-wrap{display:inline-block}.layui-upload-list{margin:10px 0}.layui-upload-choose{padding:0 10px;color:#999}.layui-upload-drag{position:relative;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-transfer-active,.layui-transfer-box{display:inline-block;vertical-align:middle}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#e6e6e6}.layui-transfer-box{position:relative;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#666}.layui-transfer-active{margin:0 15px}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5FB878;border-color:#5FB878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#FBFBFB;border-color:#e6e6e6;color:#C9C9C9}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f2f2f2;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-nav{position:relative;padding:0 20px;background-color:#393D49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar,.layui-nav-tree .layui-nav-itemed:after{position:absolute;left:0;top:0;width:0;height:5px;background-color:#5FB878;transition:all .2s;-webkit-transition:all .2s}.layui-nav-bar{z-index:1000}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{content:'';top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{content:'';width:0;height:0;border-style:solid dashed dashed;border-color:#fff transparent transparent;overflow:hidden;cursor:pointer;transition:all .2s;-webkit-transition:all .2s;position:absolute;top:50%;right:3px;margin-top:-3px;border-width:6px;border-top-color:rgba(255,255,255,.7)}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{margin-top:-9px;border-style:dashed dashed solid;border-color:transparent transparent #fff}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #d2d2d2;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#333}.layui-nav .layui-nav-child a:hover{background-color:#f2f2f2;color:#000}.layui-nav-child dd{position:relative}.layui-nav .layui-nav-child dd.layui-this a,.layui-nav-child dd.layui-this{background-color:#5FB878;color:#fff}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:45px}.layui-nav-tree .layui-nav-item a{position:relative;height:45px;line-height:45px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item a:hover{background-color:#4E5465}.layui-nav-tree .layui-nav-bar{width:5px;height:0;background-color:#009688}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child a{height:40px;line-height:40px;color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-tree .layui-nav-more{right:10px}.layui-nav-itemed>.layui-nav-child{display:block;padding:0;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-bg-blue .layui-nav-bar,.layui-bg-blue .layui-nav-itemed:after,.layui-bg-blue .layui-this:after{background-color:#93D1FF}.layui-bg-blue .layui-nav-child dd.layui-this{background-color:#1E9FFF}.layui-bg-blue .layui-nav-itemed>a,.layui-nav-tree.layui-bg-blue .layui-nav-title a,.layui-nav-tree.layui-bg-blue .layui-nav-title a:hover{background-color:#007DDB!important}.layui-breadcrumb{font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5FB878!important}.layui-breadcrumb a cite{color:#666;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s;position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:'';width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#e2e2e2;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\9;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:10px}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#FF5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5FB878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#f2f2f2}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5FB878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5FB878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#FF5722}.layui-timeline-item:before{content:'';position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:last-child:before{display:none}.layui-timeline-item:first-child:before{display:block}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#FF5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#666}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-8px 6px 0}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\9;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add],.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\9;opacity:1;left:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#e2e2e2;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown]>[carousel-item]>*,.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9F9F9F;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#666;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #D9D9D9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #ddd;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New;font-size:12px}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#FFB800;margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #e6e6e6;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#FFF;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;z-index:66666666;width:280px;padding:7px;background:#FFF;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#FFF,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #FFF;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#FF0,#0F0,#0FF,#00F,#F0F,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#666}.layui-slider{height:4px;background:#e2e2e2;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#FFF;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#FFF;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:66666666;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#FFF;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:'';position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #e6e6e6;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-15px}.layui-slider-input-btn{display:none;position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #d2d2d2}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #d2d2d2}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:34px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-iconClick,.layui-tree-main{display:inline-block;vertical-align:middle}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:'';position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:'';position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#666}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:'';position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-btnGroup,.layui-tree-editInput{position:relative;vertical-align:middle;display:inline-block}.layui-tree-spread>.layui-tree-entry>.layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#666}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .3s;-webkit-transition:all .3s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,30px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,30px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file diff --git a/Host/wwwroot/css/swiper.min.css b/Host/wwwroot/css/swiper.min.css new file mode 100644 index 0000000..abb0b1e --- /dev/null +++ b/Host/wwwroot/css/swiper.min.css @@ -0,0 +1,15 @@ +/** + * Swiper 3.0.4 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * + * http://www.idangero.us/swiper/ + * + * Copyright 2015, Vladimir Kharlampidi + * The iDangero.us + * http://www.idangero.us/ + * + * Licensed under MIT + * + * Released on: March 6, 2015 + */ +.swiper-slide,.swiper-wrapper{height:100%;position:relative;transform-style:preserve-3d;width:100%}.swiper-pagination,.swiper-wrapper{-webkit-transform:translate3d(0,0,0)}.swiper-container{margin:0 auto;position:relative;overflow:hidden;z-index:1}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-slide,.swiper-wrapper{-ms-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-webkit-transform-style:preserve-3d}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-fles-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:300ms;-moz-transition:300ms;-o-transition:300ms;transition:300ms;-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination{bottom:10px;left:0;width:100%}.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet{margin:0 5px}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow{z-index:0}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s step-end infinite;-moz-animation:swiper-preloader-spin 1s step-end infinite;animation:swiper-preloader-spin 1s step-end infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{0%{-webkit-transform:rotate(0)}8.33333333%{-webkit-transform:rotate(30deg)}16.66666667%{-webkit-transform:rotate(60deg)}25%{-webkit-transform:rotate(90deg)}33.33333333%{-webkit-transform:rotate(120deg)}41.66666667%{-webkit-transform:rotate(150deg)}50%{-webkit-transform:rotate(180deg)}58.33333333%{-webkit-transform:rotate(210deg)}66.66666667%{-webkit-transform:rotate(240deg)}75%{-webkit-transform:rotate(270deg)}83.33333333%{-webkit-transform:rotate(300deg)}91.66666667%{-webkit-transform:rotate(330deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}8.33333333%{transform:rotate(30deg)}16.66666667%{transform:rotate(60deg)}25%{transform:rotate(90deg)}33.33333333%{transform:rotate(120deg)}41.66666667%{transform:rotate(150deg)}50%{transform:rotate(180deg)}58.33333333%{transform:rotate(210deg)}66.66666667%{transform:rotate(240deg)}75%{transform:rotate(270deg)}83.33333333%{transform:rotate(300deg)}91.66666667%{transform:rotate(330deg)}100%{transform:rotate(360deg)}} \ No newline at end of file diff --git a/Host/wwwroot/fonts/glyphicons-halflings-regular.eot b/Host/wwwroot/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b93a495 Binary files /dev/null and b/Host/wwwroot/fonts/glyphicons-halflings-regular.eot differ diff --git a/Host/wwwroot/fonts/glyphicons-halflings-regular.svg b/Host/wwwroot/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/Host/wwwroot/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Host/wwwroot/fonts/glyphicons-halflings-regular.ttf b/Host/wwwroot/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..1413fc6 Binary files /dev/null and b/Host/wwwroot/fonts/glyphicons-halflings-regular.ttf differ diff --git a/Host/wwwroot/fonts/glyphicons-halflings-regular.woff b/Host/wwwroot/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..9e61285 Binary files /dev/null and b/Host/wwwroot/fonts/glyphicons-halflings-regular.woff differ diff --git a/Host/wwwroot/fonts/glyphicons-halflings-regular.woff2 b/Host/wwwroot/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..64539b5 Binary files /dev/null and b/Host/wwwroot/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/Host/wwwroot/img/.DS_Store b/Host/wwwroot/img/.DS_Store new file mode 100644 index 0000000..0961616 Binary files /dev/null and b/Host/wwwroot/img/.DS_Store differ diff --git a/Host/wwwroot/img/acBanner.png b/Host/wwwroot/img/acBanner.png new file mode 100644 index 0000000..ea01e53 Binary files /dev/null and b/Host/wwwroot/img/acBanner.png differ diff --git a/Host/wwwroot/img/account.png b/Host/wwwroot/img/account.png new file mode 100644 index 0000000..b86df24 Binary files /dev/null and b/Host/wwwroot/img/account.png differ diff --git a/Host/wwwroot/img/award.png b/Host/wwwroot/img/award.png new file mode 100644 index 0000000..4b7472d Binary files /dev/null and b/Host/wwwroot/img/award.png differ diff --git a/Host/wwwroot/img/az.png b/Host/wwwroot/img/az.png new file mode 100644 index 0000000..f5c1238 Binary files /dev/null and b/Host/wwwroot/img/az.png differ diff --git a/Host/wwwroot/img/bandPhone.png b/Host/wwwroot/img/bandPhone.png new file mode 100644 index 0000000..0da03bb Binary files /dev/null and b/Host/wwwroot/img/bandPhone.png differ diff --git a/Host/wwwroot/img/banner.png b/Host/wwwroot/img/banner.png new file mode 100644 index 0000000..5df9e9d Binary files /dev/null and b/Host/wwwroot/img/banner.png differ diff --git a/Host/wwwroot/img/bg_buy.png b/Host/wwwroot/img/bg_buy.png new file mode 100644 index 0000000..c862476 Binary files /dev/null and b/Host/wwwroot/img/bg_buy.png differ diff --git a/Host/wwwroot/img/bgtj.png b/Host/wwwroot/img/bgtj.png new file mode 100644 index 0000000..b34a300 Binary files /dev/null and b/Host/wwwroot/img/bgtj.png differ diff --git a/Host/wwwroot/img/btnL.png b/Host/wwwroot/img/btnL.png new file mode 100644 index 0000000..6c281a7 Binary files /dev/null and b/Host/wwwroot/img/btnL.png differ diff --git a/Host/wwwroot/img/btnR.png b/Host/wwwroot/img/btnR.png new file mode 100644 index 0000000..d625113 Binary files /dev/null and b/Host/wwwroot/img/btnR.png differ diff --git a/Host/wwwroot/img/c1.png b/Host/wwwroot/img/c1.png new file mode 100644 index 0000000..734bd0e Binary files /dev/null and b/Host/wwwroot/img/c1.png differ diff --git a/Host/wwwroot/img/c2.png b/Host/wwwroot/img/c2.png new file mode 100644 index 0000000..01edea3 Binary files /dev/null and b/Host/wwwroot/img/c2.png differ diff --git a/Host/wwwroot/img/c3.png b/Host/wwwroot/img/c3.png new file mode 100644 index 0000000..a0bceb3 Binary files /dev/null and b/Host/wwwroot/img/c3.png differ diff --git a/Host/wwwroot/img/chahua.png b/Host/wwwroot/img/chahua.png new file mode 100644 index 0000000..73a6372 Binary files /dev/null and b/Host/wwwroot/img/chahua.png differ diff --git a/Host/wwwroot/img/change.png b/Host/wwwroot/img/change.png new file mode 100644 index 0000000..5c04afa Binary files /dev/null and b/Host/wwwroot/img/change.png differ diff --git a/Host/wwwroot/img/check.png b/Host/wwwroot/img/check.png new file mode 100644 index 0000000..1d6d138 Binary files /dev/null and b/Host/wwwroot/img/check.png differ diff --git a/Host/wwwroot/img/chengshi.png b/Host/wwwroot/img/chengshi.png new file mode 100644 index 0000000..1ffc1c3 Binary files /dev/null and b/Host/wwwroot/img/chengshi.png differ diff --git a/Host/wwwroot/img/close.png b/Host/wwwroot/img/close.png new file mode 100644 index 0000000..d82c82c Binary files /dev/null and b/Host/wwwroot/img/close.png differ diff --git a/Host/wwwroot/img/closePwd.png b/Host/wwwroot/img/closePwd.png new file mode 100644 index 0000000..1083c72 Binary files /dev/null and b/Host/wwwroot/img/closePwd.png differ diff --git a/Host/wwwroot/img/cpbg.png b/Host/wwwroot/img/cpbg.png new file mode 100644 index 0000000..a6ba44a Binary files /dev/null and b/Host/wwwroot/img/cpbg.png differ diff --git a/Host/wwwroot/img/d1.png b/Host/wwwroot/img/d1.png new file mode 100644 index 0000000..0a8ee70 Binary files /dev/null and b/Host/wwwroot/img/d1.png differ diff --git a/Host/wwwroot/img/d_use.png b/Host/wwwroot/img/d_use.png new file mode 100644 index 0000000..75c0ab6 Binary files /dev/null and b/Host/wwwroot/img/d_use.png differ diff --git a/Host/wwwroot/img/daikuan.png b/Host/wwwroot/img/daikuan.png new file mode 100644 index 0000000..6d3e593 Binary files /dev/null and b/Host/wwwroot/img/daikuan.png differ diff --git a/Host/wwwroot/img/dk.png b/Host/wwwroot/img/dk.png new file mode 100644 index 0000000..c17393c Binary files /dev/null and b/Host/wwwroot/img/dk.png differ diff --git a/Host/wwwroot/img/ewm.png b/Host/wwwroot/img/ewm.png new file mode 100644 index 0000000..3424d1b Binary files /dev/null and b/Host/wwwroot/img/ewm.png differ diff --git a/Host/wwwroot/img/excel.png b/Host/wwwroot/img/excel.png new file mode 100644 index 0000000..499955e Binary files /dev/null and b/Host/wwwroot/img/excel.png differ diff --git a/Host/wwwroot/img/favicon.ico b/Host/wwwroot/img/favicon.ico new file mode 100644 index 0000000..af507eb Binary files /dev/null and b/Host/wwwroot/img/favicon.ico differ diff --git a/Host/wwwroot/img/fix.png b/Host/wwwroot/img/fix.png new file mode 100644 index 0000000..58f247e Binary files /dev/null and b/Host/wwwroot/img/fix.png differ diff --git a/Host/wwwroot/img/gzh.png b/Host/wwwroot/img/gzh.png new file mode 100644 index 0000000..167eb67 Binary files /dev/null and b/Host/wwwroot/img/gzh.png differ diff --git a/Host/wwwroot/img/img_news.png b/Host/wwwroot/img/img_news.png new file mode 100644 index 0000000..1618fc5 Binary files /dev/null and b/Host/wwwroot/img/img_news.png differ diff --git a/Host/wwwroot/img/img_soft.png b/Host/wwwroot/img/img_soft.png new file mode 100644 index 0000000..6a22c95 Binary files /dev/null and b/Host/wwwroot/img/img_soft.png differ diff --git a/Host/wwwroot/img/img_xinalu.png b/Host/wwwroot/img/img_xinalu.png new file mode 100644 index 0000000..af68ec2 Binary files /dev/null and b/Host/wwwroot/img/img_xinalu.png differ diff --git a/Host/wwwroot/img/ios.png b/Host/wwwroot/img/ios.png new file mode 100644 index 0000000..8850eda Binary files /dev/null and b/Host/wwwroot/img/ios.png differ diff --git a/Host/wwwroot/img/ipliang.png b/Host/wwwroot/img/ipliang.png new file mode 100644 index 0000000..6824390 Binary files /dev/null and b/Host/wwwroot/img/ipliang.png differ diff --git a/Host/wwwroot/img/kf_sh.jpg b/Host/wwwroot/img/kf_sh.jpg new file mode 100644 index 0000000..78110b6 Binary files /dev/null and b/Host/wwwroot/img/kf_sh.jpg differ diff --git a/Host/wwwroot/img/kf_sq.jpg b/Host/wwwroot/img/kf_sq.jpg new file mode 100644 index 0000000..ff7458b Binary files /dev/null and b/Host/wwwroot/img/kf_sq.jpg differ diff --git a/Host/wwwroot/img/kuangRed.png b/Host/wwwroot/img/kuangRed.png new file mode 100644 index 0000000..2b5ccca Binary files /dev/null and b/Host/wwwroot/img/kuangRed.png differ diff --git a/Host/wwwroot/img/loading.gif b/Host/wwwroot/img/loading.gif new file mode 100644 index 0000000..4e303c2 Binary files /dev/null and b/Host/wwwroot/img/loading.gif differ diff --git a/Host/wwwroot/img/logo.png b/Host/wwwroot/img/logo.png new file mode 100644 index 0000000..f0d1b1a Binary files /dev/null and b/Host/wwwroot/img/logo.png differ diff --git a/Host/wwwroot/img/logoBlue.png b/Host/wwwroot/img/logoBlue.png new file mode 100644 index 0000000..6b123f2 Binary files /dev/null and b/Host/wwwroot/img/logoBlue.png differ diff --git a/Host/wwwroot/img/logo_c.png b/Host/wwwroot/img/logo_c.png new file mode 100644 index 0000000..268842e Binary files /dev/null and b/Host/wwwroot/img/logo_c.png differ diff --git a/Host/wwwroot/img/logogD.png b/Host/wwwroot/img/logogD.png new file mode 100644 index 0000000..ffe18fb Binary files /dev/null and b/Host/wwwroot/img/logogD.png differ diff --git a/Host/wwwroot/img/map.png b/Host/wwwroot/img/map.png new file mode 100644 index 0000000..6cdcb6a Binary files /dev/null and b/Host/wwwroot/img/map.png differ diff --git a/Host/wwwroot/img/miyao.png b/Host/wwwroot/img/miyao.png new file mode 100644 index 0000000..d121b4a Binary files /dev/null and b/Host/wwwroot/img/miyao.png differ diff --git a/Host/wwwroot/img/mnq.png b/Host/wwwroot/img/mnq.png new file mode 100644 index 0000000..e1ee423 Binary files /dev/null and b/Host/wwwroot/img/mnq.png differ diff --git a/Host/wwwroot/img/more.png b/Host/wwwroot/img/more.png new file mode 100644 index 0000000..53fa4ec Binary files /dev/null and b/Host/wwwroot/img/more.png differ diff --git a/Host/wwwroot/img/nian.png b/Host/wwwroot/img/nian.png new file mode 100644 index 0000000..4e794bf Binary files /dev/null and b/Host/wwwroot/img/nian.png differ diff --git a/Host/wwwroot/img/p1.png b/Host/wwwroot/img/p1.png new file mode 100644 index 0000000..1e56f98 Binary files /dev/null and b/Host/wwwroot/img/p1.png differ diff --git a/Host/wwwroot/img/p2.png b/Host/wwwroot/img/p2.png new file mode 100644 index 0000000..412982d Binary files /dev/null and b/Host/wwwroot/img/p2.png differ diff --git a/Host/wwwroot/img/p3.png b/Host/wwwroot/img/p3.png new file mode 100644 index 0000000..86e0da3 Binary files /dev/null and b/Host/wwwroot/img/p3.png differ diff --git a/Host/wwwroot/img/p4.png b/Host/wwwroot/img/p4.png new file mode 100644 index 0000000..0c97334 Binary files /dev/null and b/Host/wwwroot/img/p4.png differ diff --git a/Host/wwwroot/img/p5.png b/Host/wwwroot/img/p5.png new file mode 100644 index 0000000..45a3f53 Binary files /dev/null and b/Host/wwwroot/img/p5.png differ diff --git a/Host/wwwroot/img/password.png b/Host/wwwroot/img/password.png new file mode 100644 index 0000000..4391e37 Binary files /dev/null and b/Host/wwwroot/img/password.png differ diff --git a/Host/wwwroot/img/payBg.png b/Host/wwwroot/img/payBg.png new file mode 100644 index 0000000..a99e4e2 Binary files /dev/null and b/Host/wwwroot/img/payBg.png differ diff --git a/Host/wwwroot/img/paywait.png b/Host/wwwroot/img/paywait.png new file mode 100644 index 0000000..cf89d7d Binary files /dev/null and b/Host/wwwroot/img/paywait.png differ diff --git a/Host/wwwroot/img/pc.png b/Host/wwwroot/img/pc.png new file mode 100644 index 0000000..0adbc8f Binary files /dev/null and b/Host/wwwroot/img/pc.png differ diff --git a/Host/wwwroot/img/peitu.png b/Host/wwwroot/img/peitu.png new file mode 100644 index 0000000..cafc233 Binary files /dev/null and b/Host/wwwroot/img/peitu.png differ diff --git a/Host/wwwroot/img/phone.png b/Host/wwwroot/img/phone.png new file mode 100644 index 0000000..1798060 Binary files /dev/null and b/Host/wwwroot/img/phone.png differ diff --git a/Host/wwwroot/img/pl1.png b/Host/wwwroot/img/pl1.png new file mode 100644 index 0000000..610ca6c Binary files /dev/null and b/Host/wwwroot/img/pl1.png differ diff --git a/Host/wwwroot/img/pl2.png b/Host/wwwroot/img/pl2.png new file mode 100644 index 0000000..bbc2700 Binary files /dev/null and b/Host/wwwroot/img/pl2.png differ diff --git a/Host/wwwroot/img/pl3.png b/Host/wwwroot/img/pl3.png new file mode 100644 index 0000000..39bf2d5 Binary files /dev/null and b/Host/wwwroot/img/pl3.png differ diff --git a/Host/wwwroot/img/pl4.png b/Host/wwwroot/img/pl4.png new file mode 100644 index 0000000..9359726 Binary files /dev/null and b/Host/wwwroot/img/pl4.png differ diff --git a/Host/wwwroot/img/pp1.png b/Host/wwwroot/img/pp1.png new file mode 100644 index 0000000..41f8e4d Binary files /dev/null and b/Host/wwwroot/img/pp1.png differ diff --git a/Host/wwwroot/img/pp10.png b/Host/wwwroot/img/pp10.png new file mode 100644 index 0000000..efedbac Binary files /dev/null and b/Host/wwwroot/img/pp10.png differ diff --git a/Host/wwwroot/img/pp2.png b/Host/wwwroot/img/pp2.png new file mode 100644 index 0000000..cbf5a67 Binary files /dev/null and b/Host/wwwroot/img/pp2.png differ diff --git a/Host/wwwroot/img/pp3.png b/Host/wwwroot/img/pp3.png new file mode 100644 index 0000000..33ba7e8 Binary files /dev/null and b/Host/wwwroot/img/pp3.png differ diff --git a/Host/wwwroot/img/pp4.png b/Host/wwwroot/img/pp4.png new file mode 100644 index 0000000..5088137 Binary files /dev/null and b/Host/wwwroot/img/pp4.png differ diff --git a/Host/wwwroot/img/pp5.png b/Host/wwwroot/img/pp5.png new file mode 100644 index 0000000..6aec60e Binary files /dev/null and b/Host/wwwroot/img/pp5.png differ diff --git a/Host/wwwroot/img/pp6.png b/Host/wwwroot/img/pp6.png new file mode 100644 index 0000000..9a4dd81 Binary files /dev/null and b/Host/wwwroot/img/pp6.png differ diff --git a/Host/wwwroot/img/pp7.png b/Host/wwwroot/img/pp7.png new file mode 100644 index 0000000..c4ad084 Binary files /dev/null and b/Host/wwwroot/img/pp7.png differ diff --git a/Host/wwwroot/img/pp8.png b/Host/wwwroot/img/pp8.png new file mode 100644 index 0000000..3de0df8 Binary files /dev/null and b/Host/wwwroot/img/pp8.png differ diff --git a/Host/wwwroot/img/pp9.png b/Host/wwwroot/img/pp9.png new file mode 100644 index 0000000..32b1994 Binary files /dev/null and b/Host/wwwroot/img/pp9.png differ diff --git a/Host/wwwroot/img/product/p0.png b/Host/wwwroot/img/product/p0.png new file mode 100644 index 0000000..062eaaf Binary files /dev/null and b/Host/wwwroot/img/product/p0.png differ diff --git a/Host/wwwroot/img/product/p1.png b/Host/wwwroot/img/product/p1.png new file mode 100644 index 0000000..307db0e Binary files /dev/null and b/Host/wwwroot/img/product/p1.png differ diff --git a/Host/wwwroot/img/product/p2.png b/Host/wwwroot/img/product/p2.png new file mode 100644 index 0000000..d85d7a7 Binary files /dev/null and b/Host/wwwroot/img/product/p2.png differ diff --git a/Host/wwwroot/img/product/p3.png b/Host/wwwroot/img/product/p3.png new file mode 100644 index 0000000..2916db0 Binary files /dev/null and b/Host/wwwroot/img/product/p3.png differ diff --git a/Host/wwwroot/img/products.png b/Host/wwwroot/img/products.png new file mode 100644 index 0000000..876e9dd Binary files /dev/null and b/Host/wwwroot/img/products.png differ diff --git a/Host/wwwroot/img/q.png b/Host/wwwroot/img/q.png new file mode 100644 index 0000000..3d710b1 Binary files /dev/null and b/Host/wwwroot/img/q.png differ diff --git a/Host/wwwroot/img/qq.png b/Host/wwwroot/img/qq.png new file mode 100644 index 0000000..a9bc0ad Binary files /dev/null and b/Host/wwwroot/img/qq.png differ diff --git a/Host/wwwroot/img/quan.png b/Host/wwwroot/img/quan.png new file mode 100644 index 0000000..1e66216 Binary files /dev/null and b/Host/wwwroot/img/quan.png differ diff --git a/Host/wwwroot/img/renzheng.png b/Host/wwwroot/img/renzheng.png new file mode 100644 index 0000000..d017cb3 Binary files /dev/null and b/Host/wwwroot/img/renzheng.png differ diff --git a/Host/wwwroot/img/renzheng_gray.png b/Host/wwwroot/img/renzheng_gray.png new file mode 100644 index 0000000..c648462 Binary files /dev/null and b/Host/wwwroot/img/renzheng_gray.png differ diff --git a/Host/wwwroot/img/showPwd.png b/Host/wwwroot/img/showPwd.png new file mode 100644 index 0000000..866e8fc Binary files /dev/null and b/Host/wwwroot/img/showPwd.png differ diff --git a/Host/wwwroot/img/shuju.png b/Host/wwwroot/img/shuju.png new file mode 100644 index 0000000..6114a26 Binary files /dev/null and b/Host/wwwroot/img/shuju.png differ diff --git a/Host/wwwroot/img/smile.png b/Host/wwwroot/img/smile.png new file mode 100644 index 0000000..98fdd29 Binary files /dev/null and b/Host/wwwroot/img/smile.png differ diff --git a/Host/wwwroot/img/t1.png b/Host/wwwroot/img/t1.png new file mode 100644 index 0000000..ce0b84f Binary files /dev/null and b/Host/wwwroot/img/t1.png differ diff --git a/Host/wwwroot/img/t2.png b/Host/wwwroot/img/t2.png new file mode 100644 index 0000000..062fd3c Binary files /dev/null and b/Host/wwwroot/img/t2.png differ diff --git a/Host/wwwroot/img/t3.png b/Host/wwwroot/img/t3.png new file mode 100644 index 0000000..2186812 Binary files /dev/null and b/Host/wwwroot/img/t3.png differ diff --git a/Host/wwwroot/img/t4.png b/Host/wwwroot/img/t4.png new file mode 100644 index 0000000..7e31f60 Binary files /dev/null and b/Host/wwwroot/img/t4.png differ diff --git a/Host/wwwroot/img/tBanner.png b/Host/wwwroot/img/tBanner.png new file mode 100644 index 0000000..590e9d5 Binary files /dev/null and b/Host/wwwroot/img/tBanner.png differ diff --git a/Host/wwwroot/img/tab1.png b/Host/wwwroot/img/tab1.png new file mode 100644 index 0000000..3bc9772 Binary files /dev/null and b/Host/wwwroot/img/tab1.png differ diff --git a/Host/wwwroot/img/tab2.png b/Host/wwwroot/img/tab2.png new file mode 100644 index 0000000..ffa38bc Binary files /dev/null and b/Host/wwwroot/img/tab2.png differ diff --git a/Host/wwwroot/img/tab3.png b/Host/wwwroot/img/tab3.png new file mode 100644 index 0000000..ad40c8f Binary files /dev/null and b/Host/wwwroot/img/tab3.png differ diff --git a/Host/wwwroot/img/tab4.png b/Host/wwwroot/img/tab4.png new file mode 100644 index 0000000..dbb9660 Binary files /dev/null and b/Host/wwwroot/img/tab4.png differ diff --git a/Host/wwwroot/img/tel.png b/Host/wwwroot/img/tel.png new file mode 100644 index 0000000..287a211 Binary files /dev/null and b/Host/wwwroot/img/tel.png differ diff --git a/Host/wwwroot/img/th.png b/Host/wwwroot/img/th.png new file mode 100644 index 0000000..45d7a44 Binary files /dev/null and b/Host/wwwroot/img/th.png differ diff --git a/Host/wwwroot/img/tit_chanpin.png b/Host/wwwroot/img/tit_chanpin.png new file mode 100644 index 0000000..5d3283c Binary files /dev/null and b/Host/wwwroot/img/tit_chanpin.png differ diff --git a/Host/wwwroot/img/tit_map.png b/Host/wwwroot/img/tit_map.png new file mode 100644 index 0000000..1a9d023 Binary files /dev/null and b/Host/wwwroot/img/tit_map.png differ diff --git a/Host/wwwroot/img/tit_news.png b/Host/wwwroot/img/tit_news.png new file mode 100644 index 0000000..2170e84 Binary files /dev/null and b/Host/wwwroot/img/tit_news.png differ diff --git a/Host/wwwroot/img/tit_use.png b/Host/wwwroot/img/tit_use.png new file mode 100644 index 0000000..be2c2b9 Binary files /dev/null and b/Host/wwwroot/img/tit_use.png differ diff --git a/Host/wwwroot/img/tit_youshi.png b/Host/wwwroot/img/tit_youshi.png new file mode 100644 index 0000000..8ed5256 Binary files /dev/null and b/Host/wwwroot/img/tit_youshi.png differ diff --git a/Host/wwwroot/img/titi_chanpin.png b/Host/wwwroot/img/titi_chanpin.png new file mode 100644 index 0000000..fb11f20 Binary files /dev/null and b/Host/wwwroot/img/titi_chanpin.png differ diff --git a/Host/wwwroot/img/titi_choose.png b/Host/wwwroot/img/titi_choose.png new file mode 100644 index 0000000..37499d0 Binary files /dev/null and b/Host/wwwroot/img/titi_choose.png differ diff --git a/Host/wwwroot/img/top.png b/Host/wwwroot/img/top.png new file mode 100644 index 0000000..7432ac7 Binary files /dev/null and b/Host/wwwroot/img/top.png differ diff --git a/Host/wwwroot/img/tui.png b/Host/wwwroot/img/tui.png new file mode 100644 index 0000000..093b2b2 Binary files /dev/null and b/Host/wwwroot/img/tui.png differ diff --git a/Host/wwwroot/img/use.png b/Host/wwwroot/img/use.png new file mode 100644 index 0000000..3c92c56 Binary files /dev/null and b/Host/wwwroot/img/use.png differ diff --git a/Host/wwwroot/img/user.png b/Host/wwwroot/img/user.png new file mode 100644 index 0000000..13bc070 Binary files /dev/null and b/Host/wwwroot/img/user.png differ diff --git a/Host/wwwroot/img/w1.png b/Host/wwwroot/img/w1.png new file mode 100644 index 0000000..ef32027 Binary files /dev/null and b/Host/wwwroot/img/w1.png differ diff --git a/Host/wwwroot/img/w2.png b/Host/wwwroot/img/w2.png new file mode 100644 index 0000000..41db2c4 Binary files /dev/null and b/Host/wwwroot/img/w2.png differ diff --git a/Host/wwwroot/img/w3.png b/Host/wwwroot/img/w3.png new file mode 100644 index 0000000..b0c75c8 Binary files /dev/null and b/Host/wwwroot/img/w3.png differ diff --git a/Host/wwwroot/img/w4.png b/Host/wwwroot/img/w4.png new file mode 100644 index 0000000..ba72a18 Binary files /dev/null and b/Host/wwwroot/img/w4.png differ diff --git a/Host/wwwroot/img/weixin.png b/Host/wwwroot/img/weixin.png new file mode 100644 index 0000000..aa97df9 Binary files /dev/null and b/Host/wwwroot/img/weixin.png differ diff --git a/Host/wwwroot/img/wenzhangpeitu.png b/Host/wwwroot/img/wenzhangpeitu.png new file mode 100644 index 0000000..f0fe2df Binary files /dev/null and b/Host/wwwroot/img/wenzhangpeitu.png differ diff --git a/Host/wwwroot/img/wx.png b/Host/wwwroot/img/wx.png new file mode 100644 index 0000000..992004a Binary files /dev/null and b/Host/wwwroot/img/wx.png differ diff --git a/Host/wwwroot/img/xianlushuoming.png b/Host/wwwroot/img/xianlushuoming.png new file mode 100644 index 0000000..e5fe4e0 Binary files /dev/null and b/Host/wwwroot/img/xianlushuoming.png differ diff --git a/Host/wwwroot/img/xufei.png b/Host/wwwroot/img/xufei.png new file mode 100644 index 0000000..eb84b90 Binary files /dev/null and b/Host/wwwroot/img/xufei.png differ diff --git a/Host/wwwroot/img/yanzhengma.png b/Host/wwwroot/img/yanzhengma.png new file mode 100644 index 0000000..d062226 Binary files /dev/null and b/Host/wwwroot/img/yanzhengma.png differ diff --git a/Host/wwwroot/img/youshi.png b/Host/wwwroot/img/youshi.png new file mode 100644 index 0000000..daf7838 Binary files /dev/null and b/Host/wwwroot/img/youshi.png differ diff --git a/Host/wwwroot/img/youshiL.png b/Host/wwwroot/img/youshiL.png new file mode 100644 index 0000000..562ba3c Binary files /dev/null and b/Host/wwwroot/img/youshiL.png differ diff --git a/Host/wwwroot/img/youshiR.png b/Host/wwwroot/img/youshiR.png new file mode 100644 index 0000000..ac4e439 Binary files /dev/null and b/Host/wwwroot/img/youshiR.png differ diff --git a/Host/wwwroot/img/yuming.png b/Host/wwwroot/img/yuming.png new file mode 100644 index 0000000..0122a0c Binary files /dev/null and b/Host/wwwroot/img/yuming.png differ diff --git a/Host/wwwroot/img/yunyingshang.png b/Host/wwwroot/img/yunyingshang.png new file mode 100644 index 0000000..4522dd0 Binary files /dev/null and b/Host/wwwroot/img/yunyingshang.png differ diff --git a/Host/wwwroot/img/zfb.png b/Host/wwwroot/img/zfb.png new file mode 100644 index 0000000..8ad2431 Binary files /dev/null and b/Host/wwwroot/img/zfb.png differ diff --git a/Host/wwwroot/img/zhilian.png b/Host/wwwroot/img/zhilian.png new file mode 100644 index 0000000..ed12a7b Binary files /dev/null and b/Host/wwwroot/img/zhilian.png differ diff --git a/Host/wwwroot/img/zhuangtai.png b/Host/wwwroot/img/zhuangtai.png new file mode 100644 index 0000000..f13bf6f Binary files /dev/null and b/Host/wwwroot/img/zhuangtai.png differ diff --git a/Host/wwwroot/js/.DS_Store b/Host/wwwroot/js/.DS_Store new file mode 100644 index 0000000..0e4b17a Binary files /dev/null and b/Host/wwwroot/js/.DS_Store differ diff --git a/Host/wwwroot/js/bootstrap-datetimepicker.min.js b/Host/wwwroot/js/bootstrap-datetimepicker.min.js new file mode 100644 index 0000000..724db76 --- /dev/null +++ b/Host/wwwroot/js/bootstrap-datetimepicker.min.js @@ -0,0 +1,2 @@ +!function(a){"use strict";if("function"==typeof define&&define.amd)define(["jquery","moment"],a);else if("object"==typeof exports)module.exports=a(require("jquery"),require("moment"));else{if("undefined"==typeof jQuery)throw"bootstrap-datetimepicker requires jQuery to be loaded first";if("undefined"==typeof moment)throw"bootstrap-datetimepicker requires Moment.js to be loaded first";a(jQuery,moment)}}(function(a,b){"use strict";if(!b)throw new Error("bootstrap-datetimepicker requires Moment.js to be loaded first");var c=function(c,d){var e,f,g,h,i,j,k,l={},m=!0,n=!1,o=!1,p=0,q=[{clsName:"days",navFnc:"M",navStep:1},{clsName:"months",navFnc:"y",navStep:1},{clsName:"years",navFnc:"y",navStep:10},{clsName:"decades",navFnc:"y",navStep:100}],r=["days","months","years","decades"],s=["top","bottom","auto"],t=["left","right","auto"],u=["default","top","bottom"],v={up:38,38:"up",down:40,40:"down",left:37,37:"left",right:39,39:"right",tab:9,9:"tab",escape:27,27:"escape",enter:13,13:"enter",pageUp:33,33:"pageUp",pageDown:34,34:"pageDown",shift:16,16:"shift",control:17,17:"control",space:32,32:"space",t:84,84:"t",delete:46,46:"delete"},w={},x=function(){return void 0!==b.tz&&void 0!==d.timeZone&&null!==d.timeZone&&""!==d.timeZone},y=function(a){var c;return c=void 0===a||null===a?b():b.isDate(a)||b.isMoment(a)?b(a):x()?b.tz(a,j,d.useStrict,d.timeZone):b(a,j,d.useStrict),x()&&c.tz(d.timeZone),c},z=function(a){if("string"!=typeof a||a.length>1)throw new TypeError("isEnabled expects a single character string parameter");switch(a){case"y":return i.indexOf("Y")!==-1;case"M":return i.indexOf("M")!==-1;case"d":return i.toLowerCase().indexOf("d")!==-1;case"h":case"H":return i.toLowerCase().indexOf("h")!==-1;case"m":return i.indexOf("m")!==-1;case"s":return i.indexOf("s")!==-1;default:return!1}},A=function(){return z("h")||z("m")||z("s")},B=function(){return z("y")||z("M")||z("d")},C=function(){var b=a("").append(a("").append(a("").addClass("prev").attr("data-action","previous").append(a("").addClass(d.icons.previous))).append(a("").addClass("picker-switch").attr("data-action","pickerSwitch").attr("colspan",d.calendarWeeks?"6":"5")).append(a("").addClass("next").attr("data-action","next").append(a("").addClass(d.icons.next)))),c=a("").append(a("").append(a("").attr("colspan",d.calendarWeeks?"8":"7")));return[a("
").addClass("datepicker-days").append(a("").addClass("table-condensed").append(b).append(a(""))),a("
").addClass("datepicker-months").append(a("
").addClass("table-condensed").append(b.clone()).append(c.clone())),a("
").addClass("datepicker-years").append(a("
").addClass("table-condensed").append(b.clone()).append(c.clone())),a("
").addClass("datepicker-decades").append(a("
").addClass("table-condensed").append(b.clone()).append(c.clone()))]},D=function(){var b=a(""),c=a(""),e=a("");return z("h")&&(b.append(a("
").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementHour}).addClass("btn").attr("data-action","incrementHours").append(a("").addClass(d.icons.up)))),c.append(a("").append(a("").addClass("timepicker-hour").attr({"data-time-component":"hours",title:d.tooltips.pickHour}).attr("data-action","showHours"))),e.append(a("").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementHour}).addClass("btn").attr("data-action","decrementHours").append(a("").addClass(d.icons.down))))),z("m")&&(z("h")&&(b.append(a("").addClass("separator")),c.append(a("").addClass("separator").html(":")),e.append(a("").addClass("separator"))),b.append(a("").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementMinute}).addClass("btn").attr("data-action","incrementMinutes").append(a("").addClass(d.icons.up)))),c.append(a("").append(a("").addClass("timepicker-minute").attr({"data-time-component":"minutes",title:d.tooltips.pickMinute}).attr("data-action","showMinutes"))),e.append(a("").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementMinute}).addClass("btn").attr("data-action","decrementMinutes").append(a("").addClass(d.icons.down))))),z("s")&&(z("m")&&(b.append(a("").addClass("separator")),c.append(a("").addClass("separator").html(":")),e.append(a("").addClass("separator"))),b.append(a("").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementSecond}).addClass("btn").attr("data-action","incrementSeconds").append(a("").addClass(d.icons.up)))),c.append(a("").append(a("").addClass("timepicker-second").attr({"data-time-component":"seconds",title:d.tooltips.pickSecond}).attr("data-action","showSeconds"))),e.append(a("").append(a("").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementSecond}).addClass("btn").attr("data-action","decrementSeconds").append(a("").addClass(d.icons.down))))),h||(b.append(a("").addClass("separator")),c.append(a("").append(a("").addClass("separator"))),a("
").addClass("timepicker-picker").append(a("").addClass("table-condensed").append([b,c,e]))},E=function(){var b=a("
").addClass("timepicker-hours").append(a("
").addClass("table-condensed")),c=a("
").addClass("timepicker-minutes").append(a("
").addClass("table-condensed")),d=a("
").addClass("timepicker-seconds").append(a("
").addClass("table-condensed")),e=[D()];return z("h")&&e.push(b),z("m")&&e.push(c),z("s")&&e.push(d),e},F=function(){var b=[];return d.showTodayButton&&b.push(a("
").append(a("").attr({"data-action":"today",title:d.tooltips.today}).append(a("").addClass(d.icons.today)))),!d.sideBySide&&B()&&A()&&b.push(a("").append(a("").attr({"data-action":"togglePicker",title:d.tooltips.selectTime}).append(a("").addClass(d.icons.time)))),d.showClear&&b.push(a("").append(a("").attr({"data-action":"clear",title:d.tooltips.clear}).append(a("").addClass(d.icons.clear)))),d.showClose&&b.push(a("").append(a("").attr({"data-action":"close",title:d.tooltips.close}).append(a("").addClass(d.icons.close)))),a("").addClass("table-condensed").append(a("").append(a("").append(b)))},G=function(){var b=a("
").addClass("bootstrap-datetimepicker-widget dropdown-menu"),c=a("
").addClass("datepicker").append(C()),e=a("
").addClass("timepicker").append(E()),f=a("
    ").addClass("list-unstyled"),g=a("
  • ").addClass("picker-switch"+(d.collapse?" accordion-toggle":"")).append(F());return d.inline&&b.removeClass("dropdown-menu"),h&&b.addClass("usetwentyfour"),z("s")&&!h&&b.addClass("wider"),d.sideBySide&&B()&&A()?(b.addClass("timepicker-sbs"),"top"===d.toolbarPlacement&&b.append(g),b.append(a("
    ").addClass("row").append(c.addClass("col-md-6")).append(e.addClass("col-md-6"))),"bottom"===d.toolbarPlacement&&b.append(g),b):("top"===d.toolbarPlacement&&f.append(g),B()&&f.append(a("
  • ").addClass(d.collapse&&A()?"collapse in":"").append(c)),"default"===d.toolbarPlacement&&f.append(g),A()&&f.append(a("
  • ").addClass(d.collapse&&B()?"collapse":"").append(e)),"bottom"===d.toolbarPlacement&&f.append(g),b.append(f))},H=function(){var b,e={};return b=c.is("input")||d.inline?c.data():c.find("input").data(),b.dateOptions&&b.dateOptions instanceof Object&&(e=a.extend(!0,e,b.dateOptions)),a.each(d,function(a){var c="date"+a.charAt(0).toUpperCase()+a.slice(1);void 0!==b[c]&&(e[a]=b[c])}),e},I=function(){var b,e=(n||c).position(),f=(n||c).offset(),g=d.widgetPositioning.vertical,h=d.widgetPositioning.horizontal;if(d.widgetParent)b=d.widgetParent.append(o);else if(c.is("input"))b=c.after(o).parent();else{if(d.inline)return void(b=c.append(o));b=c,c.children().first().after(o)}if("auto"===g&&(g=f.top+1.5*o.height()>=a(window).height()+a(window).scrollTop()&&o.height()+c.outerHeight()a(window).width()?"right":"left"),"top"===g?o.addClass("top").removeClass("bottom"):o.addClass("bottom").removeClass("top"),"right"===h?o.addClass("pull-right"):o.removeClass("pull-right"),"static"===b.css("position")&&(b=b.parents().filter(function(){return"static"!==a(this).css("position")}).first()),0===b.length)throw new Error("datetimepicker component should be placed within a non-static positioned container");o.css({top:"top"===g?"auto":e.top+c.outerHeight(),bottom:"top"===g?b.outerHeight()-(b===c?0:e.top):"auto",left:"left"===h?b===c?0:e.left:"auto",right:"left"===h?"auto":b.outerWidth()-c.outerWidth()-(b===c?0:e.left)})},J=function(a){"dp.change"===a.type&&(a.date&&a.date.isSame(a.oldDate)||!a.date&&!a.oldDate)||c.trigger(a)},K=function(a){"y"===a&&(a="YYYY"),J({type:"dp.update",change:a,viewDate:f.clone()})},L=function(a){o&&(a&&(k=Math.max(p,Math.min(3,k+a))),o.find(".datepicker > div").hide().filter(".datepicker-"+q[k].clsName).show())},M=function(){var b=a("
"),c=f.clone().startOf("w").startOf("d");for(d.calendarWeeks===!0&&b.append(a(""),d.calendarWeeks&&c.append('"),j.push(c)),k=["day"],b.isBefore(f,"M")&&k.push("old"),b.isAfter(f,"M")&&k.push("new"),b.isSame(e,"d")&&!m&&k.push("active"),R(b,"d")||k.push("disabled"),b.isSame(y(),"d")&&k.push("today"),0!==b.day()&&6!==b.day()||k.push("weekend"),J({type:"dp.classify",date:b,classNames:k}),c.append('"),b.add(1,"d");h.find("tbody").empty().append(j),T(),U(),V()}},X=function(){var b=o.find(".timepicker-hours table"),c=f.clone().startOf("d"),d=[],e=a("");for(f.hour()>11&&!h&&c.hour(12);c.isSame(f,"d")&&(h||f.hour()<12&&c.hour()<12||f.hour()>11);)c.hour()%4===0&&(e=a(""),d.push(e)),e.append('"),c.add(1,"h");b.empty().append(d)},Y=function(){for(var b=o.find(".timepicker-minutes table"),c=f.clone().startOf("h"),e=[],g=a(""),h=1===d.stepping?5:d.stepping;f.isSame(c,"h");)c.minute()%(4*h)===0&&(g=a(""),e.push(g)),g.append('"),c.add(h,"m");b.empty().append(e)},Z=function(){for(var b=o.find(".timepicker-seconds table"),c=f.clone().startOf("m"),d=[],e=a("");f.isSame(c,"m");)c.second()%20===0&&(e=a(""),d.push(e)),e.append('"),c.add(5,"s");b.empty().append(d)},$=function(){var a,b,c=o.find(".timepicker span[data-time-component]");h||(a=o.find(".timepicker [data-action=togglePeriod]"),b=e.clone().add(e.hours()>=12?-12:12,"h"),a.text(e.format("A")),R(b,"h")?a.removeClass("disabled"):a.addClass("disabled")),c.filter("[data-time-component=hours]").text(e.format(h?"HH":"hh")),c.filter("[data-time-component=minutes]").text(e.format("mm")),c.filter("[data-time-component=seconds]").text(e.format("ss")),X(),Y(),Z()},_=function(){o&&(W(),$())},aa=function(a){var b=m?null:e;if(!a)return m=!0,g.val(""),c.data("date",""),J({type:"dp.change",date:!1,oldDate:b}),void _();if(a=a.clone().locale(d.locale),x()&&a.tz(d.timeZone),1!==d.stepping)for(a.minutes(Math.round(a.minutes()/d.stepping)*d.stepping).seconds(0);d.minDate&&a.isBefore(d.minDate);)a.add(d.stepping,"minutes");R(a)?(e=a,f=e.clone(),g.val(e.format(i)),c.data("date",e.format(i)),m=!1,_(),J({type:"dp.change",date:e.clone(),oldDate:b})):(d.keepInvalid?J({type:"dp.change",date:a,oldDate:b}):g.val(m?"":e.format(i)),J({type:"dp.error",date:a,oldDate:b}))},ba=function(){var b=!1;return o?(o.find(".collapse").each(function(){var c=a(this).data("collapse");return!c||!c.transitioning||(b=!0,!1)}),b?l:(n&&n.hasClass("btn")&&n.toggleClass("active"),o.hide(),a(window).off("resize",I),o.off("click","[data-action]"),o.off("mousedown",!1),o.remove(),o=!1,J({type:"dp.hide",date:e.clone()}),g.blur(),f=e.clone(),l)):l},ca=function(){aa(null)},da=function(a){return void 0===d.parseInputDate?(!b.isMoment(a)||a instanceof Date)&&(a=y(a)):a=d.parseInputDate(a),a},ea={next:function(){var a=q[k].navFnc;f.add(q[k].navStep,a),W(),K(a)},previous:function(){var a=q[k].navFnc;f.subtract(q[k].navStep,a),W(),K(a)},pickerSwitch:function(){L(1)},selectMonth:function(b){var c=a(b.target).closest("tbody").find("span").index(a(b.target));f.month(c),k===p?(aa(e.clone().year(f.year()).month(f.month())),d.inline||ba()):(L(-1),W()),K("M")},selectYear:function(b){var c=parseInt(a(b.target).text(),10)||0;f.year(c),k===p?(aa(e.clone().year(f.year())),d.inline||ba()):(L(-1),W()),K("YYYY")},selectDecade:function(b){var c=parseInt(a(b.target).data("selection"),10)||0;f.year(c),k===p?(aa(e.clone().year(f.year())),d.inline||ba()):(L(-1),W()),K("YYYY")},selectDay:function(b){var c=f.clone();a(b.target).is(".old")&&c.subtract(1,"M"),a(b.target).is(".new")&&c.add(1,"M"),aa(c.date(parseInt(a(b.target).text(),10))),A()||d.keepOpen||d.inline||ba()},incrementHours:function(){var a=e.clone().add(1,"h");R(a,"h")&&aa(a)},incrementMinutes:function(){var a=e.clone().add(d.stepping,"m");R(a,"m")&&aa(a)},incrementSeconds:function(){var a=e.clone().add(1,"s");R(a,"s")&&aa(a)},decrementHours:function(){var a=e.clone().subtract(1,"h");R(a,"h")&&aa(a)},decrementMinutes:function(){var a=e.clone().subtract(d.stepping,"m");R(a,"m")&&aa(a)},decrementSeconds:function(){var a=e.clone().subtract(1,"s");R(a,"s")&&aa(a)},togglePeriod:function(){aa(e.clone().add(e.hours()>=12?-12:12,"h"))},togglePicker:function(b){var c,e=a(b.target),f=e.closest("ul"),g=f.find(".in"),h=f.find(".collapse:not(.in)");if(g&&g.length){if(c=g.data("collapse"),c&&c.transitioning)return;g.collapse?(g.collapse("hide"),h.collapse("show")):(g.removeClass("in"),h.addClass("in")),e.is("span")?e.toggleClass(d.icons.time+" "+d.icons.date):e.find("span").toggleClass(d.icons.time+" "+d.icons.date)}},showPicker:function(){o.find(".timepicker > div:not(.timepicker-picker)").hide(),o.find(".timepicker .timepicker-picker").show()},showHours:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-hours").show()},showMinutes:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-minutes").show()},showSeconds:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-seconds").show()},selectHour:function(b){var c=parseInt(a(b.target).text(),10);h||(e.hours()>=12?12!==c&&(c+=12):12===c&&(c=0)),aa(e.clone().hours(c)),ea.showPicker.call(l)},selectMinute:function(b){aa(e.clone().minutes(parseInt(a(b.target).text(),10))),ea.showPicker.call(l)},selectSecond:function(b){aa(e.clone().seconds(parseInt(a(b.target).text(),10))),ea.showPicker.call(l)},clear:ca,today:function(){var a=y();R(a,"d")&&aa(a)},close:ba},fa=function(b){return!a(b.currentTarget).is(".disabled")&&(ea[a(b.currentTarget).data("action")].apply(l,arguments),!1)},ga=function(){var b,c={year:function(a){return a.month(0).date(1).hours(0).seconds(0).minutes(0)},month:function(a){return a.date(1).hours(0).seconds(0).minutes(0)},day:function(a){return a.hours(0).seconds(0).minutes(0)},hour:function(a){return a.seconds(0).minutes(0)},minute:function(a){return a.seconds(0)}};return g.prop("disabled")||!d.ignoreReadonly&&g.prop("readonly")||o?l:(void 0!==g.val()&&0!==g.val().trim().length?aa(da(g.val().trim())):m&&d.useCurrent&&(d.inline||g.is("input")&&0===g.val().trim().length)&&(b=y(),"string"==typeof d.useCurrent&&(b=c[d.useCurrent](b)),aa(b)),o=G(),M(),S(),o.find(".timepicker-hours").hide(),o.find(".timepicker-minutes").hide(),o.find(".timepicker-seconds").hide(),_(),L(),a(window).on("resize",I),o.on("click","[data-action]",fa),o.on("mousedown",!1),n&&n.hasClass("btn")&&n.toggleClass("active"),I(),o.show(),d.focusOnShow&&!g.is(":focus")&&g.focus(),J({type:"dp.show"}),l)},ha=function(){return o?ba():ga()},ia=function(a){var b,c,e,f,g=null,h=[],i={},j=a.which,k="p";w[j]=k;for(b in w)w.hasOwnProperty(b)&&w[b]===k&&(h.push(b),parseInt(b,10)!==j&&(i[b]=!0));for(b in d.keyBinds)if(d.keyBinds.hasOwnProperty(b)&&"function"==typeof d.keyBinds[b]&&(e=b.split(" "),e.length===h.length&&v[j]===e[e.length-1])){for(f=!0,c=e.length-2;c>=0;c--)if(!(v[e[c]]in i)){f=!1;break}if(f){g=d.keyBinds[b];break}}g&&(g.call(l,o),a.stopPropagation(),a.preventDefault())},ja=function(a){w[a.which]="r",a.stopPropagation(),a.preventDefault()},ka=function(b){var c=a(b.target).val().trim(),d=c?da(c):null;return aa(d),b.stopImmediatePropagation(),!1},la=function(){g.on({change:ka,blur:d.debug?"":ba,keydown:ia,keyup:ja,focus:d.allowInputToggle?ga:""}),c.is("input")?g.on({focus:ga}):n&&(n.on("click",ha),n.on("mousedown",!1))},ma=function(){g.off({change:ka,blur:blur,keydown:ia,keyup:ja,focus:d.allowInputToggle?ba:""}),c.is("input")?g.off({focus:ga}):n&&(n.off("click",ha),n.off("mousedown",!1))},na=function(b){var c={};return a.each(b,function(){var a=da(this);a.isValid()&&(c[a.format("YYYY-MM-DD")]=!0)}),!!Object.keys(c).length&&c},oa=function(b){var c={};return a.each(b,function(){c[this]=!0}),!!Object.keys(c).length&&c},pa=function(){var a=d.format||"L LT";i=a.replace(/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,function(a){var b=e.localeData().longDateFormat(a)||a;return b.replace(/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,function(a){return e.localeData().longDateFormat(a)||a})}),j=d.extraFormats?d.extraFormats.slice():[],j.indexOf(a)<0&&j.indexOf(i)<0&&j.push(i),h=i.toLowerCase().indexOf("a")<1&&i.replace(/\[.*?\]/g,"").indexOf("h")<1,z("y")&&(p=2),z("M")&&(p=1),z("d")&&(p=0),k=Math.max(p,k),m||aa(e)};if(l.destroy=function(){ba(),ma(),c.removeData("DateTimePicker"),c.removeData("date")},l.toggle=ha,l.show=ga,l.hide=ba,l.disable=function(){return ba(),n&&n.hasClass("btn")&&n.addClass("disabled"),g.prop("disabled",!0),l},l.enable=function(){return n&&n.hasClass("btn")&&n.removeClass("disabled"),g.prop("disabled",!1),l},l.ignoreReadonly=function(a){if(0===arguments.length)return d.ignoreReadonly;if("boolean"!=typeof a)throw new TypeError("ignoreReadonly () expects a boolean parameter");return d.ignoreReadonly=a,l},l.options=function(b){if(0===arguments.length)return a.extend(!0,{},d);if(!(b instanceof Object))throw new TypeError("options() options parameter should be an object");return a.extend(!0,d,b),a.each(d,function(a,b){if(void 0===l[a])throw new TypeError("option "+a+" is not recognized!");l[a](b)}),l},l.date=function(a){if(0===arguments.length)return m?null:e.clone();if(!(null===a||"string"==typeof a||b.isMoment(a)||a instanceof Date))throw new TypeError("date() parameter must be one of [null, string, moment or Date]");return aa(null===a?null:da(a)),l},l.format=function(a){if(0===arguments.length)return d.format;if("string"!=typeof a&&("boolean"!=typeof a||a!==!1))throw new TypeError("format() expects a string or boolean:false parameter "+a);return d.format=a,i&&pa(),l},l.timeZone=function(a){if(0===arguments.length)return d.timeZone;if("string"!=typeof a)throw new TypeError("newZone() expects a string parameter");return d.timeZone=a,l},l.dayViewHeaderFormat=function(a){if(0===arguments.length)return d.dayViewHeaderFormat;if("string"!=typeof a)throw new TypeError("dayViewHeaderFormat() expects a string parameter");return d.dayViewHeaderFormat=a,l},l.extraFormats=function(a){if(0===arguments.length)return d.extraFormats;if(a!==!1&&!(a instanceof Array))throw new TypeError("extraFormats() expects an array or false parameter");return d.extraFormats=a,j&&pa(),l},l.disabledDates=function(b){if(0===arguments.length)return d.disabledDates?a.extend({},d.disabledDates):d.disabledDates;if(!b)return d.disabledDates=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledDates() expects an array parameter");return d.disabledDates=na(b),d.enabledDates=!1,_(),l},l.enabledDates=function(b){if(0===arguments.length)return d.enabledDates?a.extend({},d.enabledDates):d.enabledDates;if(!b)return d.enabledDates=!1,_(),l;if(!(b instanceof Array))throw new TypeError("enabledDates() expects an array parameter");return d.enabledDates=na(b),d.disabledDates=!1,_(),l},l.daysOfWeekDisabled=function(a){if(0===arguments.length)return d.daysOfWeekDisabled.splice(0);if("boolean"==typeof a&&!a)return d.daysOfWeekDisabled=!1,_(),l;if(!(a instanceof Array))throw new TypeError("daysOfWeekDisabled() expects an array parameter");if(d.daysOfWeekDisabled=a.reduce(function(a,b){return b=parseInt(b,10),b>6||b<0||isNaN(b)?a:(a.indexOf(b)===-1&&a.push(b),a)},[]).sort(),d.useCurrent&&!d.keepInvalid){for(var b=0;!R(e,"d");){if(e.add(1,"d"),31===b)throw"Tried 31 times to find a valid date";b++}aa(e)}return _(),l},l.maxDate=function(a){if(0===arguments.length)return d.maxDate?d.maxDate.clone():d.maxDate;if("boolean"==typeof a&&a===!1)return d.maxDate=!1,_(),l;"string"==typeof a&&("now"!==a&&"moment"!==a||(a=y()));var b=da(a);if(!b.isValid())throw new TypeError("maxDate() Could not parse date parameter: "+a);if(d.minDate&&b.isBefore(d.minDate))throw new TypeError("maxDate() date parameter is before options.minDate: "+b.format(i));return d.maxDate=b,d.useCurrent&&!d.keepInvalid&&e.isAfter(a)&&aa(d.maxDate),f.isAfter(b)&&(f=b.clone().subtract(d.stepping,"m")),_(),l},l.minDate=function(a){if(0===arguments.length)return d.minDate?d.minDate.clone():d.minDate;if("boolean"==typeof a&&a===!1)return d.minDate=!1,_(),l;"string"==typeof a&&("now"!==a&&"moment"!==a||(a=y()));var b=da(a);if(!b.isValid())throw new TypeError("minDate() Could not parse date parameter: "+a);if(d.maxDate&&b.isAfter(d.maxDate))throw new TypeError("minDate() date parameter is after options.maxDate: "+b.format(i));return d.minDate=b,d.useCurrent&&!d.keepInvalid&&e.isBefore(a)&&aa(d.minDate),f.isBefore(b)&&(f=b.clone().add(d.stepping,"m")),_(),l},l.defaultDate=function(a){if(0===arguments.length)return d.defaultDate?d.defaultDate.clone():d.defaultDate;if(!a)return d.defaultDate=!1,l;"string"==typeof a&&(a="now"===a||"moment"===a?y():y(a));var b=da(a);if(!b.isValid())throw new TypeError("defaultDate() Could not parse date parameter: "+a);if(!R(b))throw new TypeError("defaultDate() date passed is invalid according to component setup validations");return d.defaultDate=b,(d.defaultDate&&d.inline||""===g.val().trim())&&aa(d.defaultDate),l},l.locale=function(a){if(0===arguments.length)return d.locale;if(!b.localeData(a))throw new TypeError("locale() locale "+a+" is not loaded from moment locales!");return d.locale=a,e.locale(d.locale),f.locale(d.locale),i&&pa(),o&&(ba(),ga()),l},l.stepping=function(a){return 0===arguments.length?d.stepping:(a=parseInt(a,10),(isNaN(a)||a<1)&&(a=1),d.stepping=a,l)},l.useCurrent=function(a){var b=["year","month","day","hour","minute"];if(0===arguments.length)return d.useCurrent;if("boolean"!=typeof a&&"string"!=typeof a)throw new TypeError("useCurrent() expects a boolean or string parameter");if("string"==typeof a&&b.indexOf(a.toLowerCase())===-1)throw new TypeError("useCurrent() expects a string parameter of "+b.join(", "));return d.useCurrent=a,l},l.collapse=function(a){if(0===arguments.length)return d.collapse;if("boolean"!=typeof a)throw new TypeError("collapse() expects a boolean parameter");return d.collapse===a?l:(d.collapse=a,o&&(ba(),ga()),l)},l.icons=function(b){if(0===arguments.length)return a.extend({},d.icons);if(!(b instanceof Object))throw new TypeError("icons() expects parameter to be an Object");return a.extend(d.icons,b),o&&(ba(),ga()),l},l.tooltips=function(b){if(0===arguments.length)return a.extend({},d.tooltips);if(!(b instanceof Object))throw new TypeError("tooltips() expects parameter to be an Object");return a.extend(d.tooltips,b),o&&(ba(),ga()),l},l.useStrict=function(a){if(0===arguments.length)return d.useStrict;if("boolean"!=typeof a)throw new TypeError("useStrict() expects a boolean parameter");return d.useStrict=a,l},l.sideBySide=function(a){if(0===arguments.length)return d.sideBySide;if("boolean"!=typeof a)throw new TypeError("sideBySide() expects a boolean parameter");return d.sideBySide=a,o&&(ba(),ga()),l},l.viewMode=function(a){if(0===arguments.length)return d.viewMode;if("string"!=typeof a)throw new TypeError("viewMode() expects a string parameter");if(r.indexOf(a)===-1)throw new TypeError("viewMode() parameter must be one of ("+r.join(", ")+") value");return d.viewMode=a,k=Math.max(r.indexOf(a),p),L(),l},l.toolbarPlacement=function(a){if(0===arguments.length)return d.toolbarPlacement;if("string"!=typeof a)throw new TypeError("toolbarPlacement() expects a string parameter");if(u.indexOf(a)===-1)throw new TypeError("toolbarPlacement() parameter must be one of ("+u.join(", ")+") value");return d.toolbarPlacement=a,o&&(ba(),ga()),l},l.widgetPositioning=function(b){if(0===arguments.length)return a.extend({},d.widgetPositioning);if("[object Object]"!=={}.toString.call(b))throw new TypeError("widgetPositioning() expects an object variable");if(b.horizontal){if("string"!=typeof b.horizontal)throw new TypeError("widgetPositioning() horizontal variable must be a string");if(b.horizontal=b.horizontal.toLowerCase(),t.indexOf(b.horizontal)===-1)throw new TypeError("widgetPositioning() expects horizontal parameter to be one of ("+t.join(", ")+")");d.widgetPositioning.horizontal=b.horizontal}if(b.vertical){if("string"!=typeof b.vertical)throw new TypeError("widgetPositioning() vertical variable must be a string");if(b.vertical=b.vertical.toLowerCase(),s.indexOf(b.vertical)===-1)throw new TypeError("widgetPositioning() expects vertical parameter to be one of ("+s.join(", ")+")");d.widgetPositioning.vertical=b.vertical}return _(),l},l.calendarWeeks=function(a){if(0===arguments.length)return d.calendarWeeks;if("boolean"!=typeof a)throw new TypeError("calendarWeeks() expects parameter to be a boolean value");return d.calendarWeeks=a,_(),l},l.showTodayButton=function(a){if(0===arguments.length)return d.showTodayButton;if("boolean"!=typeof a)throw new TypeError("showTodayButton() expects a boolean parameter");return d.showTodayButton=a,o&&(ba(),ga()),l},l.showClear=function(a){if(0===arguments.length)return d.showClear;if("boolean"!=typeof a)throw new TypeError("showClear() expects a boolean parameter");return d.showClear=a,o&&(ba(),ga()),l},l.widgetParent=function(b){if(0===arguments.length)return d.widgetParent;if("string"==typeof b&&(b=a(b)),null!==b&&"string"!=typeof b&&!(b instanceof a))throw new TypeError("widgetParent() expects a string or a jQuery object parameter");return d.widgetParent=b,o&&(ba(),ga()),l},l.keepOpen=function(a){if(0===arguments.length)return d.keepOpen;if("boolean"!=typeof a)throw new TypeError("keepOpen() expects a boolean parameter");return d.keepOpen=a,l},l.focusOnShow=function(a){if(0===arguments.length)return d.focusOnShow;if("boolean"!=typeof a)throw new TypeError("focusOnShow() expects a boolean parameter");return d.focusOnShow=a,l},l.inline=function(a){if(0===arguments.length)return d.inline;if("boolean"!=typeof a)throw new TypeError("inline() expects a boolean parameter");return d.inline=a,l},l.clear=function(){return ca(),l},l.keyBinds=function(a){return 0===arguments.length?d.keyBinds:(d.keyBinds=a,l)},l.getMoment=function(a){return y(a)},l.debug=function(a){if("boolean"!=typeof a)throw new TypeError("debug() expects a boolean parameter");return d.debug=a,l},l.allowInputToggle=function(a){if(0===arguments.length)return d.allowInputToggle;if("boolean"!=typeof a)throw new TypeError("allowInputToggle() expects a boolean parameter");return d.allowInputToggle=a,l},l.showClose=function(a){if(0===arguments.length)return d.showClose;if("boolean"!=typeof a)throw new TypeError("showClose() expects a boolean parameter");return d.showClose=a,l},l.keepInvalid=function(a){if(0===arguments.length)return d.keepInvalid;if("boolean"!=typeof a)throw new TypeError("keepInvalid() expects a boolean parameter"); +return d.keepInvalid=a,l},l.datepickerInput=function(a){if(0===arguments.length)return d.datepickerInput;if("string"!=typeof a)throw new TypeError("datepickerInput() expects a string parameter");return d.datepickerInput=a,l},l.parseInputDate=function(a){if(0===arguments.length)return d.parseInputDate;if("function"!=typeof a)throw new TypeError("parseInputDate() sholud be as function");return d.parseInputDate=a,l},l.disabledTimeIntervals=function(b){if(0===arguments.length)return d.disabledTimeIntervals?a.extend({},d.disabledTimeIntervals):d.disabledTimeIntervals;if(!b)return d.disabledTimeIntervals=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledTimeIntervals() expects an array parameter");return d.disabledTimeIntervals=b,_(),l},l.disabledHours=function(b){if(0===arguments.length)return d.disabledHours?a.extend({},d.disabledHours):d.disabledHours;if(!b)return d.disabledHours=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledHours() expects an array parameter");if(d.disabledHours=oa(b),d.enabledHours=!1,d.useCurrent&&!d.keepInvalid){for(var c=0;!R(e,"h");){if(e.add(1,"h"),24===c)throw"Tried 24 times to find a valid date";c++}aa(e)}return _(),l},l.enabledHours=function(b){if(0===arguments.length)return d.enabledHours?a.extend({},d.enabledHours):d.enabledHours;if(!b)return d.enabledHours=!1,_(),l;if(!(b instanceof Array))throw new TypeError("enabledHours() expects an array parameter");if(d.enabledHours=oa(b),d.disabledHours=!1,d.useCurrent&&!d.keepInvalid){for(var c=0;!R(e,"h");){if(e.add(1,"h"),24===c)throw"Tried 24 times to find a valid date";c++}aa(e)}return _(),l},l.viewDate=function(a){if(0===arguments.length)return f.clone();if(!a)return f=e.clone(),l;if(!("string"==typeof a||b.isMoment(a)||a instanceof Date))throw new TypeError("viewDate() parameter must be one of [string, moment or Date]");return f=da(a),K(),l},c.is("input"))g=c;else if(g=c.find(d.datepickerInput),0===g.length)g=c.find("input");else if(!g.is("input"))throw new Error('CSS class "'+d.datepickerInput+'" cannot be applied to non input element');if(c.hasClass("input-group")&&(n=0===c.find(".datepickerbutton").length?c.find(".input-group-addon"):c.find(".datepickerbutton")),!d.inline&&!g.is("input"))throw new Error("Could not initialize DateTimePicker without an input element");return e=y(),f=e.clone(),a.extend(!0,d,H()),l.options(d),pa(),la(),g.prop("disabled")&&l.disable(),g.is("input")&&0!==g.val().trim().length?aa(da(g.val().trim())):d.defaultDate&&void 0===g.attr("placeholder")&&aa(d.defaultDate),d.inline&&ga(),l};return a.fn.datetimepicker=function(b){b=b||{};var d,e=Array.prototype.slice.call(arguments,1),f=!0,g=["destroy","hide","show","toggle"];if("object"==typeof b)return this.each(function(){var d,e=a(this);e.data("DateTimePicker")||(d=a.extend(!0,{},a.fn.datetimepicker.defaults,b),e.data("DateTimePicker",c(e,d)))});if("string"==typeof b)return this.each(function(){var c=a(this),g=c.data("DateTimePicker");if(!g)throw new Error('bootstrap-datetimepicker("'+b+'") method was called on an element that is not using DateTimePicker');d=g[b].apply(g,e),f=d===g}),f||a.inArray(b,g)>-1?this:d;throw new TypeError("Invalid arguments for DateTimePicker: "+b)},a.fn.datetimepicker.defaults={timeZone:"",format:!1,dayViewHeaderFormat:"MMMM YYYY",extraFormats:!1,stepping:1,minDate:!1,maxDate:!1,useCurrent:!0,collapse:!0,locale:b.locale(),defaultDate:!1,disabledDates:!1,enabledDates:!1,icons:{time:"glyphicon glyphicon-time",date:"glyphicon glyphicon-calendar",up:"glyphicon glyphicon-chevron-up",down:"glyphicon glyphicon-chevron-down",previous:"glyphicon glyphicon-chevron-left",next:"glyphicon glyphicon-chevron-right",today:"glyphicon glyphicon-screenshot",clear:"glyphicon glyphicon-trash",close:"glyphicon glyphicon-remove"},tooltips:{today:"Go to today",clear:"Clear selection",close:"Close the picker",selectMonth:"Select Month",prevMonth:"Previous Month",nextMonth:"Next Month",selectYear:"Select Year",prevYear:"Previous Year",nextYear:"Next Year",selectDecade:"Select Decade",prevDecade:"Previous Decade",nextDecade:"Next Decade",prevCentury:"Previous Century",nextCentury:"Next Century",pickHour:"Pick Hour",incrementHour:"Increment Hour",decrementHour:"Decrement Hour",pickMinute:"Pick Minute",incrementMinute:"Increment Minute",decrementMinute:"Decrement Minute",pickSecond:"Pick Second",incrementSecond:"Increment Second",decrementSecond:"Decrement Second",togglePeriod:"Toggle Period",selectTime:"Select Time"},useStrict:!1,sideBySide:!1,daysOfWeekDisabled:!1,calendarWeeks:!1,viewMode:"days",toolbarPlacement:"default",showTodayButton:!1,showClear:!1,showClose:!1,widgetPositioning:{horizontal:"auto",vertical:"auto"},widgetParent:null,ignoreReadonly:!1,keepOpen:!1,focusOnShow:!0,inline:!1,keepInvalid:!1,datepickerInput:".datepickerinput",keyBinds:{up:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().subtract(7,"d")):this.date(b.clone().add(this.stepping(),"m"))}},down:function(a){if(!a)return void this.show();var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().add(7,"d")):this.date(b.clone().subtract(this.stepping(),"m"))},"control up":function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().subtract(1,"y")):this.date(b.clone().add(1,"h"))}},"control down":function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().add(1,"y")):this.date(b.clone().subtract(1,"h"))}},left:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().subtract(1,"d"))}},right:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().add(1,"d"))}},pageUp:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().subtract(1,"M"))}},pageDown:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().add(1,"M"))}},enter:function(){this.hide()},escape:function(){this.hide()},"control space":function(a){a&&a.find(".timepicker").is(":visible")&&a.find('.btn[data-action="togglePeriod"]').click()},t:function(){this.date(this.getMoment())},delete:function(){this.clear()}},debug:!1,allowInputToggle:!1,disabledTimeIntervals:!1,disabledHours:!1,enabledHours:!1,viewDate:!1},a.fn.datetimepicker}); \ No newline at end of file diff --git a/Host/wwwroot/js/bootstrap.min.js b/Host/wwwroot/js/bootstrap.min.js new file mode 100644 index 0000000..9bcd2fc --- /dev/null +++ b/Host/wwwroot/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under the MIT license + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/Host/wwwroot/js/jquery.min.js b/Host/wwwroot/js/jquery.min.js new file mode 100644 index 0000000..969e7cb --- /dev/null +++ b/Host/wwwroot/js/jquery.min.js @@ -0,0 +1,6 @@ +/*! jQuery v2.0.0 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license +//@ sourceMappingURL=jquery.min.map +*/ +(function(e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u=e.$,l={},c=[],f="2.0.0",p=c.concat,h=c.push,d=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=f.trim,x=function(e,n){return new x.fn.init(e,n,t)},b=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return p.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,f,p,h,d,g,m,y="sizzle"+-new Date,v=e.document,b={},w=0,T=0,C=ot(),k=ot(),N=ot(),E=!1,S=function(){return 0},j=typeof undefined,D=1<<31,A=[],L=A.pop,q=A.push,H=A.push,O=A.slice,F=A.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},P="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",R="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=M.replace("w","w#"),$="\\["+R+"*("+M+")"+R+"*(?:([*^$|!~]?=)"+R+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+R+"*\\]",B=":("+M+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",I=RegExp("^"+R+"+|((?:^|[^\\\\])(?:\\\\.)*)"+R+"+$","g"),z=RegExp("^"+R+"*,"+R+"*"),_=RegExp("^"+R+"*([>+~]|"+R+")"+R+"*"),X=RegExp(R+"*[+~]"),U=RegExp("="+R+"*([^\\]'\"]*)"+R+"*\\]","g"),Y=RegExp(B),V=RegExp("^"+W+"$"),G={ID:RegExp("^#("+M+")"),CLASS:RegExp("^\\.("+M+")"),TAG:RegExp("^("+M.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+B),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),"boolean":RegExp("^(?:"+P+")$","i"),needsContext:RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},J=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,et=/'|\\/g,tt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,nt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{H.apply(A=O.call(v.childNodes),v.childNodes),A[v.childNodes.length].nodeType}catch(rt){H={apply:A.length?function(e,t){q.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function it(e){return J.test(e+"")}function ot(){var e,t=[];return e=function(n,i){return t.push(n+=" ")>r.cacheLength&&delete e[t.shift()],e[n]=i}}function st(e){return e[y]=!0,e}function at(e){var t=c.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ut(e,t,n,r){var i,o,s,a,u,f,d,g,x,w;if((t?t.ownerDocument||t:v)!==c&&l(t),t=t||c,n=n||[],!e||"string"!=typeof e)return n;if(1!==(a=t.nodeType)&&9!==a)return[];if(p&&!r){if(i=Q.exec(e))if(s=i[1]){if(9===a){if(o=t.getElementById(s),!o||!o.parentNode)return n;if(o.id===s)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(s))&&m(t,o)&&o.id===s)return n.push(o),n}else{if(i[2])return H.apply(n,t.getElementsByTagName(e)),n;if((s=i[3])&&b.getElementsByClassName&&t.getElementsByClassName)return H.apply(n,t.getElementsByClassName(s)),n}if(b.qsa&&(!h||!h.test(e))){if(g=d=y,x=t,w=9===a&&e,1===a&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(d=t.getAttribute("id"))?g=d.replace(et,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=f.length;while(u--)f[u]=g+mt(f[u]);x=X.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return H.apply(n,x.querySelectorAll(w)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(I,"$1"),t,n,r)}o=ut.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},l=ut.setDocument=function(e){var t=e?e.ownerDocument||e:v;return t!==c&&9===t.nodeType&&t.documentElement?(c=t,f=t.documentElement,p=!o(t),b.getElementsByTagName=at(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),b.attributes=at(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByClassName=at(function(e){return e.innerHTML="
",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),b.sortDetached=at(function(e){return 1&e.compareDocumentPosition(c.createElement("div"))}),b.getById=at(function(e){return f.appendChild(e).id=y,!t.getElementsByName||!t.getElementsByName(y).length}),b.getById?(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){return e.getAttribute("id")===t}}):(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n?n.id===e||typeof n.getAttributeNode!==j&&n.getAttributeNode("id").value===e?[n]:undefined:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=b.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=b.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&p?t.getElementsByClassName(e):undefined},d=[],h=[],(b.qsa=it(t.querySelectorAll))&&(at(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||h.push("\\["+R+"*(?:value|"+P+")"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){var t=c.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&h.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(b.matchesSelector=it(g=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){b.disconnectedMatch=g.call(e,"div"),g.call(e,"[s!='']:x"),d.push("!=",B)}),h=h.length&&RegExp(h.join("|")),d=d.length&&RegExp(d.join("|")),m=it(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,n){if(e===n)return E=!0,0;var r=n.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(n);return r?1&r||!b.sortDetached&&n.compareDocumentPosition(e)===r?e===t||m(v,e)?-1:n===t||m(v,n)?1:u?F.call(u,e)-F.call(u,n):0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],l=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:u?F.call(u,e)-F.call(u,n):0;if(o===s)return lt(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)l.unshift(r);while(a[i]===l[i])i++;return i?lt(a[i],l[i]):a[i]===v?-1:l[i]===v?1:0},c):c},ut.matches=function(e,t){return ut(e,null,null,t)},ut.matchesSelector=function(e,t){if((e.ownerDocument||e)!==c&&l(e),t=t.replace(U,"='$1']"),!(!b.matchesSelector||!p||d&&d.test(t)||h&&h.test(t)))try{var n=g.call(e,t);if(n||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return ut(t,c,null,[e]).length>0},ut.contains=function(e,t){return(e.ownerDocument||e)!==c&&l(e),m(e,t)},ut.attr=function(e,t){(e.ownerDocument||e)!==c&&l(e);var n=r.attrHandle[t.toLowerCase()],i=n&&n(e,t,!p);return i===undefined?b.attributes||!p?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null:i},ut.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ut.uniqueSort=function(e){var t,n=[],r=0,i=0;if(E=!b.detectDuplicates,u=!b.sortStable&&e.slice(0),e.sort(S),E){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return e};function lt(e,t){var n=t&&e,r=n&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ct(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}function ft(e,t,n){var r;return n?undefined:r=e.getAttribute(t,"type"===t.toLowerCase()?1:2)}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ht(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function dt(e){return st(function(t){return t=+t,st(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}i=ut.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r];r++)n+=i(t);return n},r=ut.selectors={cacheLength:50,createPseudo:st,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(tt,nt),e[3]=(e[4]||e[5]||"").replace(tt,nt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ut.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ut.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return G.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&Y.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(tt,nt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ut.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){f=t;while(f=f[g])if(a?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[y]||(m[y]={}),l=c[e]||[],h=l[0]===w&&l[1],p=l[0]===w&&l[2],f=h&&m.childNodes[h];while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if(1===f.nodeType&&++p&&f===t){c[e]=[w,h,p];break}}else if(x&&(l=(t[y]||(t[y]={}))[e])&&l[0]===w)p=l[1];else while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if((a?f.nodeName.toLowerCase()===v:1===f.nodeType)&&++p&&(x&&((f[y]||(f[y]={}))[e]=[w,p]),f===t))break;return p-=i,p===r||0===p%r&&p/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ut.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?st(function(e,n){var r,o=i(e,t),s=o.length;while(s--)r=F.call(e,o[s]),e[r]=!(n[r]=o[s])}):function(e){return i(e,0,n)}):i}},pseudos:{not:st(function(e){var t=[],n=[],r=s(e.replace(I,"$1"));return r[y]?st(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:st(function(e){return function(t){return ut(e,t).length>0}}),contains:st(function(e){return function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:st(function(e){return V.test(e||"")||ut.error("unsupported lang: "+e),e=e.replace(tt,nt).toLowerCase(),function(t){var n;do if(n=p?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===c.activeElement&&(!c.hasFocus||c.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Z.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:dt(function(){return[0]}),last:dt(function(e,t){return[t-1]}),eq:dt(function(e,t,n){return[0>n?n+t:n]}),even:dt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:dt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:dt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:dt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=ht(t);function gt(e,t){var n,i,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=r.preFilter;while(a){(!n||(i=z.exec(a)))&&(i&&(a=a.slice(i[0].length)||a),u.push(o=[])),n=!1,(i=_.exec(a))&&(n=i.shift(),o.push({value:n,type:i[0].replace(I," ")}),a=a.slice(n.length));for(s in r.filter)!(i=G[s].exec(a))||l[s]&&!(i=l[s](i))||(n=i.shift(),o.push({value:n,type:s,matches:i}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ut.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,r){var i=t.dir,o=r&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,r,a){var u,l,c,f=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,r,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[y]||(t[y]={}),(l=c[i])&&l[0]===f){if((u=l[1])===!0||u===n)return u===!0}else if(l=c[i]=[f],l[1]=e(t,r,a)||n,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[y]&&(r=bt(r)),i&&!i[y]&&(i=bt(i,o)),st(function(o,s,a,u){var l,c,f,p=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,p,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(f=l[c])&&(y[h[c]]=!(m[h[c]]=f))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(f=y[c])&&l.push(m[c]=f);i(null,y=[],l,u)}c=y.length;while(c--)(f=y[c])&&(l=i?F.call(o,f):p[c])>-1&&(o[l]=!(s[l]=f))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):H.apply(s,y)})}function wt(e){var t,n,i,o=e.length,s=r.relative[e[0].type],u=s||r.relative[" "],l=s?1:0,c=yt(function(e){return e===t},u,!0),f=yt(function(e){return F.call(t,e)>-1},u,!0),p=[function(e,n,r){return!s&&(r||n!==a)||((t=n).nodeType?c(e,n,r):f(e,n,r))}];for(;o>l;l++)if(n=r.relative[e[l].type])p=[yt(vt(p),n)];else{if(n=r.filter[e[l].type].apply(null,e[l].matches),n[y]){for(i=++l;o>i;i++)if(r.relative[e[i].type])break;return bt(l>1&&vt(p),l>1&&mt(e.slice(0,l-1)).replace(I,"$1"),n,i>l&&wt(e.slice(l,i)),o>i&&wt(e=e.slice(i)),o>i&&mt(e))}p.push(n)}return vt(p)}function Tt(e,t){var i=0,o=t.length>0,s=e.length>0,u=function(u,l,f,p,h){var d,g,m,y=[],v=0,x="0",b=u&&[],T=null!=h,C=a,k=u||s&&r.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(a=l!==c&&l,n=i);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,f)){p.push(d);break}T&&(w=N,n=++i)}o&&((d=!m&&d)&&v--,u&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,f);if(u){if(v>0)while(x--)b[x]||y[x]||(y[x]=L.call(p));y=xt(y)}H.apply(p,y),T&&!u&&y.length>0&&v+t.length>1&&ut.uniqueSort(p)}return T&&(w=N,a=C),b};return o?st(u):u}s=ut.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[y]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ut(e,t[r],n);return n}function kt(e,t,n,i){var o,a,u,l,c,f=gt(e);if(!i&&1===f.length){if(a=f[0]=f[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&p&&r.relative[a[1].type]){if(t=(r.find.ID(u.matches[0].replace(tt,nt),t)||[])[0],!t)return n;e=e.slice(a.shift().value.length)}o=G.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],r.relative[l=u.type])break;if((c=r.find[l])&&(i=c(u.matches[0].replace(tt,nt),X.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=i.length&&mt(a),!e)return H.apply(n,i),n;break}}}return s(e,f)(i,t,!p,n,X.test(e)),n}r.pseudos.nth=r.pseudos.eq;function Nt(){}Nt.prototype=r.filters=r.pseudos,r.setFilters=new Nt,b.sortStable=y.split("").sort(S).join("")===y,l(),[0,0].sort(S),b.detectDuplicates=E,at(function(e){if(e.innerHTML="","#"!==e.firstChild.getAttribute("href")){var t="type|href|height|width".split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ft}}),at(function(e){if(null!=e.getAttribute("disabled")){var t=P.split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ct}}),x.find=ut,x.expr=ut.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ut.uniqueSort,x.text=ut.getText,x.isXMLDoc=ut.isXML,x.contains=ut.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(f){for(t=e.memory&&f,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(f[0],f[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!a||n&&!u||(r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))this.cache[i]=t;else for(r in t)o[r]=t[r]},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){return t===undefined||t&&"string"==typeof t&&n===undefined?this.get(e,t):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i=this.key(e),o=this.cache[i];if(t===undefined)this.cache[i]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):t in o?r=[t]:(r=x.camelCase(t),r=r in o?[r]:r.match(w)||[]),n=r.length;while(n--)delete o[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){delete this.cache[this.key(e)]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.substring(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t); +x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,i="boolean"==typeof t;return x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,s=0,a=x(this),u=t,l=e.match(w)||[];while(o=l[s++])u=i?u:!a.hasClass(o),a[u?"addClass":"removeClass"](o)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i,o=x(this);1===this.nodeType&&(i=r?e.call(this,n,o.val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.boolean.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.boolean.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.boolean.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,f,p,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(p=x.event.special[d]||{},d=(o?p.delegateType:p.bindType)||d,p=x.event.special[d]||{},f=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,p.setup&&p.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),p.add&&(p.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,f):h.push(f),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,f,p,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){f=x.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,f,p,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),p=x.event.special[d]||{},i||!p.trigger||p.trigger.apply(r,n)!==!1)){if(!i&&!p.noBubble&&!x.isWindow(r)){for(l=p.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:p.bindType||d,f=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),f&&f.apply(a,n),f=c&&a[c],f&&x.acceptData(a)&&f.apply&&f.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||p._default&&p._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return 3===e.target.nodeType&&(e.target=e.target.parentNode),s.filter?s.filter(e,o):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=x.expr.match.needsContext,Q={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return t=this,this.pushStack(x(e).filter(function(){for(r=0;i>r;r++)if(x.contains(t[r],this))return!0}));for(n=[],r=0;i>r;r++)x.find(e,this[r],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(Z(this,e||[],!0))},filter:function(e){return this.pushStack(Z(this,e||[],!1))},is:function(e){return!!e&&("string"==typeof e?J.test(e)?x(e,this.context).index(this[0])>=0:x.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],s=J.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function K(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return K(e,"nextSibling")},prev:function(e){return K(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(Q[e]||x.unique(i),"p"===e[0]&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function Z(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var et=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,tt=/<([\w:]+)/,nt=/<|&#?\w+;/,rt=/<(?:script|style|link)/i,it=/^(?:checkbox|radio)$/i,ot=/checked\s*(?:[^=]|=\s*.checked.)/i,st=/^$|\/(?:java|ecma)script/i,at=/^true\/(.*)/,ut=/^\s*\s*$/g,lt={option:[1,""],thead:[1,"
").addClass("cw").text("#"));c.isBefore(f.clone().endOf("w"));)b.append(a("").addClass("dow").text(c.format("dd"))),c.add(1,"d");o.find(".datepicker-days thead").append(b)},N=function(a){return d.disabledDates[a.format("YYYY-MM-DD")]===!0},O=function(a){return d.enabledDates[a.format("YYYY-MM-DD")]===!0},P=function(a){return d.disabledHours[a.format("H")]===!0},Q=function(a){return d.enabledHours[a.format("H")]===!0},R=function(b,c){if(!b.isValid())return!1;if(d.disabledDates&&"d"===c&&N(b))return!1;if(d.enabledDates&&"d"===c&&!O(b))return!1;if(d.minDate&&b.isBefore(d.minDate,c))return!1;if(d.maxDate&&b.isAfter(d.maxDate,c))return!1;if(d.daysOfWeekDisabled&&"d"===c&&d.daysOfWeekDisabled.indexOf(b.day())!==-1)return!1;if(d.disabledHours&&("h"===c||"m"===c||"s"===c)&&P(b))return!1;if(d.enabledHours&&("h"===c||"m"===c||"s"===c)&&!Q(b))return!1;if(d.disabledTimeIntervals&&("h"===c||"m"===c||"s"===c)){var e=!1;if(a.each(d.disabledTimeIntervals,function(){if(b.isBetween(this[0],this[1]))return e=!0,!1}),e)return!1}return!0},S=function(){for(var b=[],c=f.clone().startOf("y").startOf("d");c.isSame(f,"y");)b.push(a("").attr("data-action","selectMonth").addClass("month").text(c.format("MMM"))),c.add(1,"M");o.find(".datepicker-months td").empty().append(b)},T=function(){var b=o.find(".datepicker-months"),c=b.find("th"),g=b.find("tbody").find("span");c.eq(0).find("span").attr("title",d.tooltips.prevYear),c.eq(1).attr("title",d.tooltips.selectYear),c.eq(2).find("span").attr("title",d.tooltips.nextYear),b.find(".disabled").removeClass("disabled"),R(f.clone().subtract(1,"y"),"y")||c.eq(0).addClass("disabled"),c.eq(1).text(f.year()),R(f.clone().add(1,"y"),"y")||c.eq(2).addClass("disabled"),g.removeClass("active"),e.isSame(f,"y")&&!m&&g.eq(e.month()).addClass("active"),g.each(function(b){R(f.clone().month(b),"M")||a(this).addClass("disabled")})},U=function(){var a=o.find(".datepicker-years"),b=a.find("th"),c=f.clone().subtract(5,"y"),g=f.clone().add(6,"y"),h="";for(b.eq(0).find("span").attr("title",d.tooltips.prevDecade),b.eq(1).attr("title",d.tooltips.selectDecade),b.eq(2).find("span").attr("title",d.tooltips.nextDecade),a.find(".disabled").removeClass("disabled"),d.minDate&&d.minDate.isAfter(c,"y")&&b.eq(0).addClass("disabled"),b.eq(1).text(c.year()+"-"+g.year()),d.maxDate&&d.maxDate.isBefore(g,"y")&&b.eq(2).addClass("disabled");!c.isAfter(g,"y");)h+=''+c.year()+"",c.add(1,"y");a.find("td").html(h)},V=function(){var a,c=o.find(".datepicker-decades"),g=c.find("th"),h=b({y:f.year()-f.year()%100-1}),i=h.clone().add(100,"y"),j=h.clone(),k=!1,l=!1,m="";for(g.eq(0).find("span").attr("title",d.tooltips.prevCentury),g.eq(2).find("span").attr("title",d.tooltips.nextCentury),c.find(".disabled").removeClass("disabled"),(h.isSame(b({y:1900}))||d.minDate&&d.minDate.isAfter(h,"y"))&&g.eq(0).addClass("disabled"),g.eq(1).text(h.year()+"-"+i.year()),(h.isSame(b({y:2e3}))||d.maxDate&&d.maxDate.isBefore(i,"y"))&&g.eq(2).addClass("disabled");!h.isAfter(i,"y");)a=h.year()+12,k=d.minDate&&d.minDate.isAfter(h,"y")&&d.minDate.year()<=a,l=d.maxDate&&d.maxDate.isAfter(h,"y")&&d.maxDate.year()<=a,m+=''+(h.year()+1)+" - "+(h.year()+12)+"",h.add(12,"y");m+="",c.find("td").html(m),g.eq(1).text(j.year()+1+"-"+h.year())},W=function(){var b,c,g,h=o.find(".datepicker-days"),i=h.find("th"),j=[],k=[];if(B()){for(i.eq(0).find("span").attr("title",d.tooltips.prevMonth),i.eq(1).attr("title",d.tooltips.selectMonth),i.eq(2).find("span").attr("title",d.tooltips.nextMonth),h.find(".disabled").removeClass("disabled"),i.eq(1).text(f.format(d.dayViewHeaderFormat)),R(f.clone().subtract(1,"M"),"M")||i.eq(0).addClass("disabled"),R(f.clone().add(1,"M"),"M")||i.eq(2).addClass("disabled"),b=f.clone().startOf("M").startOf("w").startOf("d"),g=0;g<42;g++)0===b.weekday()&&(c=a("
'+b.week()+"'+b.date()+"
'+c.format(h?"HH":"hh")+"
'+c.format("mm")+"
'+c.format("ss")+"
","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};lt.optgroup=lt.option,lt.tbody=lt.tfoot=lt.colgroup=lt.caption=lt.col=lt.thead,lt.th=lt.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(gt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&ht(gt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(gt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!rt.test(e)&&!lt[(tt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(et,"<$1>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(gt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=p.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,f=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&ot.test(d))return this.each(function(r){var i=f.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(gt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,gt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,pt),l=0;s>l;l++)a=o[l],st.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(ut,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=gt(a),o=gt(e),r=0,i=o.length;i>r;r++)mt(o[r],s[r]);if(t)if(n)for(o=o||gt(e),s=s||gt(a),r=0,i=o.length;i>r;r++)dt(o[r],s[r]);else dt(e,a);return s=gt(a,"script"),s.length>0&&ht(s,!u&>(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,f=e.length,p=t.createDocumentFragment(),h=[];for(;f>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(nt.test(i)){o=o||p.appendChild(t.createElement("div")),s=(tt.exec(i)||["",""])[1].toLowerCase(),a=lt[s]||lt._default,o.innerHTML=a[1]+i.replace(et,"<$1>")+a[2],l=a[0];while(l--)o=o.firstChild;x.merge(h,o.childNodes),o=p.firstChild,o.textContent=""}else h.push(t.createTextNode(i));p.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=gt(p.appendChild(i),"script"),u&&ht(o),n)){l=0;while(i=o[l++])st.test(i.type||"")&&n.push(i)}return p},cleanData:function(e){var t,n,r,i=e.length,o=0,s=x.event.special;for(;i>o;o++){if(n=e[o],x.acceptData(n)&&(t=q.access(n)))for(r in t.events)s[r]?x.event.remove(n,r):x.removeEvent(n,r,t.handle);L.discard(n),q.discard(n)}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"text",async:!1,global:!1,success:x.globalEval})}});function ct(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function pt(e){var t=at.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function ht(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function dt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=x.extend({},o),l=o.events,q.set(t,s),l)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function gt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function mt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&it.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var yt,vt,xt=/^(none|table(?!-c[ea]).+)/,bt=/^margin/,wt=RegExp("^("+b+")(.*)$","i"),Tt=RegExp("^("+b+")(?!px)[a-z%]+$","i"),Ct=RegExp("^([+-])=("+b+")","i"),kt={BODY:"block"},Nt={position:"absolute",visibility:"hidden",display:"block"},Et={letterSpacing:0,fontWeight:400},St=["Top","Right","Bottom","Left"],jt=["Webkit","O","Moz","ms"];function Dt(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=jt.length;while(i--)if(t=jt[i]+n,t in e)return t;return r}function At(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function Lt(t){return e.getComputedStyle(t,null)}function qt(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&At(r)&&(o[s]=q.access(r,"olddisplay",Pt(r.nodeName)))):o[s]||(i=At(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=Lt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return qt(this,!0)},hide:function(){return qt(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:At(this))?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=yt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=Dt(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=Ct.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=Dt(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=yt(e,t,r)),"normal"===i&&t in Et&&(i=Et[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),yt=function(e,t,n){var r,i,o,s=n||Lt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Tt.test(a)&&bt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ht(e,t,n){var r=wt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ot(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+St[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+St[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+St[o]+"Width",!0,i))):(s+=x.css(e,"padding"+St[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+St[o]+"Width",!0,i)));return s}function Ft(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Lt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=yt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Tt.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ot(e,t,n||(s?"border":"content"),r,o)+"px"}function Pt(e){var t=o,n=kt[e];return n||(n=Rt(e,t),"none"!==n&&n||(vt=(vt||x("