baiqiu-cms-decoration2 1.1.76 → 1.1.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,5 +28,5 @@ var p=function(t){var e={};return t?(t.trim().split("\n").forEach(function(t){va
|
|
|
28
28
|
* @license MIT
|
|
29
29
|
*/
|
|
30
30
|
var J=n(110),K=n(111),Z=n(112);e.Buffer=a,e.SlowBuffer=m,e.INSPECT_MAX_BYTES=50,a.TYPED_ARRAY_SUPPORT=void 0!==t.TYPED_ARRAY_SUPPORT?t.TYPED_ARRAY_SUPPORT:function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()&&"function"==typeof t.subarray&&0===t.subarray(1,1).byteLength}catch(t){return!1}}(),e.kMaxLength=i(),a.poolSize=8192,a._augment=function(t){return t.__proto__=a.prototype,t},a.from=function(t,e,n){return o(null,t,e,n)},a.TYPED_ARRAY_SUPPORT&&(a.prototype.__proto__=Uint8Array.prototype,a.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&a[Symbol.species]===a&&Object.defineProperty(a,Symbol.species,{value:null,configurable:!0})),a.alloc=function(t,e,n){return l(null,t,e,n)},a.allocUnsafe=function(t){return c(null,t)},a.allocUnsafeSlow=function(t){return c(null,t)},a.isBuffer=function(t){return!(null==t||!t._isBuffer)},a.compare=function(t,e){if(!a.isBuffer(t)||!a.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,i=e.length,r=0,o=Math.min(n,i);r<o;++r)if(t[r]!==e[r]){n=t[r],i=e[r];break}return n<i?-1:i<n?1:0},a.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},a.concat=function(t,e){if(!Z(t))throw new TypeError('"list" argument must be an Array of Buffers');if(0===t.length)return a.alloc(0);var n;if(void 0===e)for(e=0,n=0;n<t.length;++n)e+=t[n].length;var i=a.allocUnsafe(e),r=0;for(n=0;n<t.length;++n){var o=t[n];if(!a.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(i,r),r+=o.length}return i},a.byteLength=v,a.prototype._isBuffer=!0,a.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<t;e+=2)y(this,e,e+1);return this},a.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<t;e+=4)y(this,e,e+3),y(this,e+1,e+2);return this},a.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<t;e+=8)y(this,e,e+7),y(this,e+1,e+6),y(this,e+2,e+5),y(this,e+3,e+4);return this},a.prototype.toString=function(){var t=0|this.length;return 0===t?"":0===arguments.length?A(this,0,t):g.apply(this,arguments)},a.prototype.equals=function(t){if(!a.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t||0===a.compare(this,t)},a.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(t+=" ... ")),"<Buffer "+t+">"},a.prototype.compare=function(t,e,n,i,r){if(!a.isBuffer(t))throw new TypeError("Argument must be a Buffer");if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),e<0||n>t.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&e>=n)return 0;if(i>=r)return-1;if(e>=n)return 1;if(e>>>=0,n>>>=0,i>>>=0,r>>>=0,this===t)return 0;for(var o=r-i,s=n-e,l=Math.min(o,s),c=this.slice(i,r),u=t.slice(e,n),d=0;d<l;++d)if(c[d]!==u[d]){o=c[d],s=u[d];break}return o<s?-1:s<o?1:0},a.prototype.includes=function(t,e,n){return-1!==this.indexOf(t,e,n)},a.prototype.indexOf=function(t,e,n){return b(this,t,e,n,!0)},a.prototype.lastIndexOf=function(t,e,n){return b(this,t,e,n,!1)},a.prototype.write=function(t,e,n,i){if(void 0===e)i="utf8",n=this.length,e=0;else if(void 0===n&&"string"==typeof e)i=e,n=this.length,e=0;else{if(!isFinite(e))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");e|=0,isFinite(n)?(n|=0,void 0===i&&(i="utf8")):(i=n,n=void 0)}var r=this.length-e;if((void 0===n||n>r)&&(n=r),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var a=!1;;)switch(i){case"hex":return _(this,t,e,n);case"utf8":case"utf-8":return T(this,t,e,n);case"ascii":return x(this,t,e,n);case"latin1":case"binary":return k(this,t,e,n);case"base64":return S(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return E(this,t,e,n);default:if(a)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),a=!0}},a.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Q=4096;a.prototype.slice=function(t,e){var n=this.length;t=~~t,e=void 0===e?n:~~e,t<0?(t+=n)<0&&(t=0):t>n&&(t=n),e<0?(e+=n)<0&&(e=0):e>n&&(e=n),e<t&&(e=t);var i;if(a.TYPED_ARRAY_SUPPORT)i=this.subarray(t,e),i.__proto__=a.prototype;else{var r=e-t;i=new a(r,void 0);for(var o=0;o<r;++o)i[o]=this[o+t]}return i},a.prototype.readUIntLE=function(t,e,n){t|=0,e|=0,n||D(t,e,this.length);for(var i=this[t],r=1,a=0;++a<e&&(r*=256);)i+=this[t+a]*r;return i},a.prototype.readUIntBE=function(t,e,n){t|=0,e|=0,n||D(t,e,this.length);for(var i=this[t+--e],r=1;e>0&&(r*=256);)i+=this[t+--e]*r;return i},a.prototype.readUInt8=function(t,e){return e||D(t,1,this.length),this[t]},a.prototype.readUInt16LE=function(t,e){return e||D(t,2,this.length),this[t]|this[t+1]<<8},a.prototype.readUInt16BE=function(t,e){return e||D(t,2,this.length),this[t]<<8|this[t+1]},a.prototype.readUInt32LE=function(t,e){return e||D(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},a.prototype.readUInt32BE=function(t,e){return e||D(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},a.prototype.readIntLE=function(t,e,n){t|=0,e|=0,n||D(t,e,this.length);for(var i=this[t],r=1,a=0;++a<e&&(r*=256);)i+=this[t+a]*r;return r*=128,i>=r&&(i-=Math.pow(2,8*e)),i},a.prototype.readIntBE=function(t,e,n){t|=0,e|=0,n||D(t,e,this.length);for(var i=e,r=1,a=this[t+--i];i>0&&(r*=256);)a+=this[t+--i]*r;return r*=128,a>=r&&(a-=Math.pow(2,8*e)),a},a.prototype.readInt8=function(t,e){return e||D(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},a.prototype.readInt16LE=function(t,e){e||D(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt16BE=function(t,e){e||D(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt32LE=function(t,e){return e||D(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},a.prototype.readInt32BE=function(t,e){return e||D(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},a.prototype.readFloatLE=function(t,e){return e||D(t,4,this.length),K.read(this,t,!0,23,4)},a.prototype.readFloatBE=function(t,e){return e||D(t,4,this.length),K.read(this,t,!1,23,4)},a.prototype.readDoubleLE=function(t,e){return e||D(t,8,this.length),K.read(this,t,!0,52,8)},a.prototype.readDoubleBE=function(t,e){return e||D(t,8,this.length),K.read(this,t,!1,52,8)},a.prototype.writeUIntLE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){M(this,t,e,n,Math.pow(2,8*n)-1,0)}var r=1,a=0;for(this[e]=255&t;++a<n&&(r*=256);)this[e+a]=t/r&255;return e+n},a.prototype.writeUIntBE=function(t,e,n,i){if(t=+t,e|=0,n|=0,!i){M(this,t,e,n,Math.pow(2,8*n)-1,0)}var r=n-1,a=1;for(this[e+r]=255&t;--r>=0&&(a*=256);)this[e+r]=t/a&255;return e+n},a.prototype.writeUInt8=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,1,255,0),a.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=255&t,e+1},a.prototype.writeUInt16LE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,2,65535,0),a.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):N(this,t,e,!0),e+2},a.prototype.writeUInt16BE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,2,65535,0),a.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):N(this,t,e,!1),e+2},a.prototype.writeUInt32LE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,4,4294967295,0),a.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t):R(this,t,e,!0),e+4},a.prototype.writeUInt32BE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,4,4294967295,0),a.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):R(this,t,e,!1),e+4},a.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);M(this,t,e,n,r-1,-r)}var a=0,o=1,s=0;for(this[e]=255&t;++a<n&&(o*=256);)t<0&&0===s&&0!==this[e+a-1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+n},a.prototype.writeIntBE=function(t,e,n,i){if(t=+t,e|=0,!i){var r=Math.pow(2,8*n-1);M(this,t,e,n,r-1,-r)}var a=n-1,o=1,s=0;for(this[e+a]=255&t;--a>=0&&(o*=256);)t<0&&0===s&&0!==this[e+a+1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+n},a.prototype.writeInt8=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,1,127,-128),a.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),t<0&&(t=255+t+1),this[e]=255&t,e+1},a.prototype.writeInt16LE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,2,32767,-32768),a.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8):N(this,t,e,!0),e+2},a.prototype.writeInt16BE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,2,32767,-32768),a.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=255&t):N(this,t,e,!1),e+2},a.prototype.writeInt32LE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,4,2147483647,-2147483648),a.TYPED_ARRAY_SUPPORT?(this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):R(this,t,e,!0),e+4},a.prototype.writeInt32BE=function(t,e,n){return t=+t,e|=0,n||M(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),a.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t):R(this,t,e,!1),e+4},a.prototype.writeFloatLE=function(t,e,n){return U(this,t,e,!0,n)},a.prototype.writeFloatBE=function(t,e,n){return U(this,t,e,!1,n)},a.prototype.writeDoubleLE=function(t,e,n){return F(this,t,e,!0,n)},a.prototype.writeDoubleBE=function(t,e,n){return F(this,t,e,!1,n)},a.prototype.copy=function(t,e,n,i){if(n||(n=0),i||0===i||(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i<n&&(i=n),i===n)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e<i-n&&(i=t.length-e+n);var r,o=i-n;if(this===t&&n<e&&e<i)for(r=o-1;r>=0;--r)t[r+e]=this[r+n];else if(o<1e3||!a.TYPED_ARRAY_SUPPORT)for(r=0;r<o;++r)t[r+e]=this[r+n];else Uint8Array.prototype.set.call(t,this.subarray(n,n+o),e);return o},a.prototype.fill=function(t,e,n,i){if("string"==typeof t){if("string"==typeof e?(i=e,e=0,n=this.length):"string"==typeof n&&(i=n,n=this.length),1===t.length){var r=t.charCodeAt(0);r<256&&(t=r)}if(void 0!==i&&"string"!=typeof i)throw new TypeError("encoding must be a string");if("string"==typeof i&&!a.isEncoding(i))throw new TypeError("Unknown encoding: "+i)}else"number"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<n)throw new RangeError("Out of range index");if(n<=e)return this;e>>>=0,n=void 0===n?this.length:n>>>0,t||(t=0);var o;if("number"==typeof t)for(o=e;o<n;++o)this[o]=t;else{var s=a.isBuffer(t)?t:$(new a(t,i).toString()),l=s.length;for(o=0;o<n-e;++o)this[o+e]=s[o%l]}return this};var tt=/[^+\/0-9A-Za-z-_]/g}).call(e,n(4))},function(t,e,n){"use strict";function i(t){var e=t.length;if(e%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=t.indexOf("=");return-1===n&&(n=e),[n,n===e?0:4-n%4]}function r(t){var e=i(t),n=e[0],r=e[1];return 3*(n+r)/4-r}function a(t,e,n){return 3*(e+n)/4-n}function o(t){var e,n,r=i(t),o=r[0],s=r[1],l=new p(a(t,o,s)),c=0,u=s>0?o-4:o;for(n=0;n<u;n+=4)e=d[t.charCodeAt(n)]<<18|d[t.charCodeAt(n+1)]<<12|d[t.charCodeAt(n+2)]<<6|d[t.charCodeAt(n+3)],l[c++]=e>>16&255,l[c++]=e>>8&255,l[c++]=255&e;return 2===s&&(e=d[t.charCodeAt(n)]<<2|d[t.charCodeAt(n+1)]>>4,l[c++]=255&e),1===s&&(e=d[t.charCodeAt(n)]<<10|d[t.charCodeAt(n+1)]<<4|d[t.charCodeAt(n+2)]>>2,l[c++]=e>>8&255,l[c++]=255&e),l}function s(t){return u[t>>18&63]+u[t>>12&63]+u[t>>6&63]+u[63&t]}function l(t,e,n){for(var i,r=[],a=e;a<n;a+=3)i=(t[a]<<16&16711680)+(t[a+1]<<8&65280)+(255&t[a+2]),r.push(s(i));return r.join("")}function c(t){for(var e,n=t.length,i=n%3,r=[],a=0,o=n-i;a<o;a+=16383)r.push(l(t,a,a+16383>o?o:a+16383));return 1===i?(e=t[n-1],r.push(u[e>>2]+u[e<<4&63]+"==")):2===i&&(e=(t[n-2]<<8)+t[n-1],r.push(u[e>>10]+u[e>>4&63]+u[e<<2&63]+"=")),r.join("")}e.byteLength=r,e.toByteArray=o,e.fromByteArray=c;for(var u=[],d=[],p="undefined"!=typeof Uint8Array?Uint8Array:Array,f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h=0,m=f.length;h<m;++h)u[h]=f[h],d[f.charCodeAt(h)]=h;d["-".charCodeAt(0)]=62,d["_".charCodeAt(0)]=63},function(t,e){/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
31
|
-
e.read=function(t,e,n,i,r){var a,o,s=8*r-i-1,l=(1<<s)-1,c=l>>1,u=-7,d=n?r-1:0,p=n?-1:1,f=t[e+d];for(d+=p,a=f&(1<<-u)-1,f>>=-u,u+=s;u>0;a=256*a+t[e+d],d+=p,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=i;u>0;o=256*o+t[e+d],d+=p,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(f?-1:1);o+=Math.pow(2,i),a-=c}return(f?-1:1)*o*Math.pow(2,a-i)},e.write=function(t,e,n,i,r,a){var o,s,l,c=8*a-r-1,u=(1<<c)-1,d=u>>1,p=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:a-1,h=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),e+=o+d>=1?p/l:p*Math.pow(2,1-d),e*l>=2&&(o++,l/=2),o+d>=u?(s=0,o=u):o+d>=1?(s=(e*l-1)*Math.pow(2,r),o+=d):(s=e*Math.pow(2,d-1)*Math.pow(2,r),o=0));r>=8;t[n+f]=255&s,f+=h,s/=256,r-=8);for(o=o<<r|s,c+=r;c>0;t[n+f]=255&o,f+=h,o/=256,c-=8);t[n+f-h]|=128*m}},function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},function(t,e,n){"use strict";n.d(e,"i",function(){return l}),n.d(e,"h",function(){return c}),n.d(e,"d",function(){return u}),n.d(e,"f",function(){return d}),n.d(e,"e",function(){return f}),n.d(e,"c",function(){return h}),n.d(e,"g",function(){return m}),n.d(e,"a",function(){return v}),n.d(e,"b",function(){return g});var i=n(10),r=n.n(i),a={mp4:/^(av0?1|avc0?[1234]|vp0?9|flac|opus|mp3|mp4a|mp4v|stpp.ttml.im1t)/,webm:/^(vp0?[89]|av0?1|opus|vorbis)/,ogg:/^(vp0?[89]|theora|flac|opus|vorbis)/,video:/^(av0?1|avc0?[1234]|vp0?[89]|hvc1|hev1|theora|mp4v)/,audio:/^(mp4a|flac|vorbis|opus|ac-[34]|ec-3|alac|mp3|speex|aac)/,text:/^(stpp.ttml.im1t)/,muxerVideo:/^(avc0?1)/,muxerAudio:/^(mp4a)/,muxerText:/a^/},o=["video","audio","text"],s=["Video","Audio","Text"],l=function(t){return t?t.replace(/avc1\.(\d+)\.(\d+)/i,function(t,e,n){return"avc1."+("00"+Number(e).toString(16)).slice(-2)+"00"+("00"+Number(n).toString(16)).slice(-2)}):t},c=function(t){void 0===t&&(t="");var e=t.split(","),n=[];return e.forEach(function(t){t=t.trim();var e;o.forEach(function(i){var r=a[i].exec(t.toLowerCase());if(r&&!(r.length<=1)){e=i;var o=t.substring(0,r[1].length),s=t.replace(o,"");n.push({type:o,details:s,mediaType:i})}}),e||n.push({type:t,details:"",mediaType:"unknown"})}),n},u=function(t,e){if(!t.mediaGroups.AUDIO||!e)return null;var n=t.mediaGroups.AUDIO[e];if(!n)return null;for(var i in n){var r=n[i];if(r.default&&r.playlists)return c(r.playlists[0].attributes.CODECS)}return null},d=function(t){return void 0===t&&(t=""),a.audio.test(t.trim().toLowerCase())},p=function(t){return void 0===t&&(t=""),a.text.test(t.trim().toLowerCase())},f=function(t){if(t&&"string"==typeof t){var e=t.toLowerCase().split(",").map(function(t){return l(t.trim())}),n="video";1===e.length&&d(e[0])?n="audio":1===e.length&&p(e[0])&&(n="application");var i="mp4";return e.every(function(t){return a.mp4.test(t)})?i="mp4":e.every(function(t){return a.webm.test(t)})?i="webm":e.every(function(t){return a.ogg.test(t)})&&(i="ogg"),n+"/"+i+';codecs="'+t+'"'}},h=function(t){return void 0===t&&(t=""),r.a.MediaSource&&r.a.MediaSource.isTypeSupported&&r.a.MediaSource.isTypeSupported(f(t))||!1},m=function(t){return void 0===t&&(t=""),t.toLowerCase().split(",").every(function(t){t=t.trim();for(var e=0;e<s.length;e++){if(a["muxer"+s[e]].test(t))return!0}return!1})},v="mp4a.40.2",g="avc1.4d400d"},function(t,e,n){"use strict";n.d(e,"a",function(){return a});var i=/^(audio|video|application)\/(x-|vnd\.apple\.)?mpegurl/i,r=/^application\/dash\+xml/i,a=function(t){return i.test(t)?"hls":r.test(t)?"dash":"application/vnd.videojs.vhs+json"===t?"vhs-json":null}},function(t,e,n){"use strict";n.d(e,"a",function(){return E}),n.d(e,"b",function(){return D}),n.d(e,"c",function(){return Et}),n.d(e,"d",function(){return Ct});var i=n(28),r=n(116),a=n.n(r),o=n(117),s=n(29),l=n(118),c=(n.n(l),function(t){return!!t&&"object"==typeof t}),u=function t(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return n.reduce(function(e,n){return"object"!=typeof n?e:(Object.keys(n).forEach(function(i){Array.isArray(e[i])&&Array.isArray(n[i])?e[i]=e[i].concat(n[i]):c(e[i])&&c(n[i])?e[i]=t(e[i],n[i]):e[i]=n[i]}),e)},{})},d=function(t){return Object.keys(t).map(function(e){return t[e]})},p=function(t,e){for(var n=[],i=t;i<e;i++)n.push(i);return n},f=function(t){return t.reduce(function(t,e){return t.concat(e)},[])},h=function(t){if(!t.length)return[];for(var e=[],n=0;n<t.length;n++)e.push(t[n]);return e},m=function(t,e){return t.reduce(function(t,n,i){return n[e]&&t.push(i),t},[])},v=function(t,e){for(var n=0;n<t.length;n++)if(e(t[n]))return n;return-1},g=function(t,e){return d(t.reduce(function(t,n){return n.forEach(function(n){t[e(n)]=n}),t},{}))},y={INVALID_NUMBER_OF_PERIOD:"INVALID_NUMBER_OF_PERIOD",DASH_EMPTY_MANIFEST:"DASH_EMPTY_MANIFEST",DASH_INVALID_XML:"DASH_INVALID_XML",NO_BASE_URL:"NO_BASE_URL",MISSING_SEGMENT_INFORMATION:"MISSING_SEGMENT_INFORMATION",SEGMENT_TIME_UNSPECIFIED:"SEGMENT_TIME_UNSPECIFIED",UNSUPPORTED_UTC_TIMING_SCHEME:"UNSUPPORTED_UTC_TIMING_SCHEME"},b=function(t){var e=t.baseUrl,n=void 0===e?"":e,r=t.source,o=void 0===r?"":r,s=t.range,l=void 0===s?"":s,c=t.indexRange,u=void 0===c?"":c,d={uri:o,resolvedUri:Object(i.a)(n||"",o)};if(l||u){var p=l||u,f=p.split("-"),h=a.a.BigInt?a.a.BigInt(f[0]):parseInt(f[0],10),m=a.a.BigInt?a.a.BigInt(f[1]):parseInt(f[1],10);h<Number.MAX_SAFE_INTEGER&&"bigint"==typeof h&&(h=Number(h)),m<Number.MAX_SAFE_INTEGER&&"bigint"==typeof m&&(m=Number(m));var v;v="bigint"==typeof m||"bigint"==typeof h?a.a.BigInt(m)-a.a.BigInt(h)+a.a.BigInt(1):m-h+1,"bigint"==typeof v&&v<Number.MAX_SAFE_INTEGER&&(v=Number(v)),d.byterange={length:v,offset:h}}return d},w=function(t){var e;return e="bigint"==typeof t.offset||"bigint"==typeof t.length?a.a.BigInt(t.offset)+a.a.BigInt(t.length)-a.a.BigInt(1):t.offset+t.length-1,t.offset+"-"+e},_=function(t){return t&&"number"!=typeof t&&(t=parseInt(t,10)),isNaN(t)?null:t},T={static:function(t){var e=t.duration,n=t.timescale,i=void 0===n?1:n,r=t.sourceDuration,a=t.periodDuration,o=_(t.endNumber),s=e/i;return"number"==typeof o?{start:0,end:o}:"number"==typeof a?{start:0,end:a/s}:{start:0,end:r/s}},dynamic:function(t){var e=t.NOW,n=t.clientOffset,i=t.availabilityStartTime,r=t.timescale,a=void 0===r?1:r,o=t.duration,s=t.periodStart,l=void 0===s?0:s,c=t.minimumUpdatePeriod,u=void 0===c?0:c,d=t.timeShiftBufferDepth,p=void 0===d?1/0:d,f=_(t.endNumber),h=(e+n)/1e3,m=i+l,v=h+u,g=v-m,y=Math.ceil(g*a/o),b=Math.floor((h-m-p)*a/o),w=Math.floor((h-m)*a/o);return{start:Math.max(0,b),end:"number"==typeof f?f:Math.min(y,w)}}},x=function(t){return function(e){var n=t.duration,i=t.timescale,r=void 0===i?1:i,a=t.periodStart,o=t.startNumber;return{number:(void 0===o?1:o)+e,duration:n/r,timeline:a,time:e*n}}},k=function(t){var e=t.type,n=t.duration,i=t.timescale,r=void 0===i?1:i,a=t.periodDuration,o=t.sourceDuration,s=T[e](t),l=s.start,c=s.end,u=p(l,c).map(x(t));if("static"===e){var d=u.length-1,f="number"==typeof a?a:o;u[d].duration=f-n/r*d}return u},S=function(t){var e=t.baseUrl,n=t.initialization,i=void 0===n?{}:n,r=t.sourceDuration,a=t.indexRange,o=void 0===a?"":a,s=t.periodStart,l=t.presentationTime,c=t.number,u=void 0===c?0:c,d=t.duration;if(!e)throw new Error(y.NO_BASE_URL);var p=b({baseUrl:e,source:i.sourceURL,range:i.range}),f=b({baseUrl:e,source:e,indexRange:o});if(f.map=p,d){var h=k(t);h.length&&(f.duration=h[0].duration,f.timeline=h[0].timeline)}else r&&(f.duration=r,f.timeline=s);return f.presentationTime=l||s,f.number=u,[f]},E=function(t,e,n){var i,r=t.sidx.map?t.sidx.map:null,o=t.sidx.duration,s=t.timeline||0,l=t.sidx.byterange,c=l.offset+l.length,u=e.timescale,d=e.references.filter(function(t){return 1!==t.referenceType}),p=[],f=t.endList?"static":"dynamic",h=t.sidx.timeline,m=h,v=t.mediaSequence||0;i="bigint"==typeof e.firstOffset?a.a.BigInt(c)+e.firstOffset:c+e.firstOffset;for(var g=0;g<d.length;g++){var y=e.references[g],b=y.referencedSize,w=y.subsegmentDuration,_=void 0;_="bigint"==typeof i?i+a.a.BigInt(b)-a.a.BigInt(1):i+b-1;var T=i+"-"+_,x={baseUrl:n,timescale:u,timeline:s,periodStart:h,presentationTime:m,number:v,duration:w,sourceDuration:o,indexRange:T,type:f},k=S(x)[0];r&&(k.map=r),p.push(k),i+="bigint"==typeof i?a.a.BigInt(b):b,m+=w/u,v++}return t.segments=p,t},C=["AUDIO","SUBTITLES"],A=function(t){return g(t,function(t){return t.timeline}).sort(function(t,e){return t.timeline>e.timeline?1:-1})},I=function(t,e){for(var n=0;n<t.length;n++)if(t[n].attributes.NAME===e)return t[n];return null},O=function(t){var e=[];return Object(o.a)(t,C,function(t,n,i,r){e=e.concat(t.playlists||[])}),e},j=function(t){var e=t.playlist,n=t.mediaSequence;e.mediaSequence=n,e.segments.forEach(function(t,n){t.number=e.mediaSequence+n})},P=function(t){var e=t.oldPlaylists,n=t.newPlaylists,i=t.timelineStarts;n.forEach(function(t){t.discontinuitySequence=v(i,function(e){return e.timeline===t.timeline});var n=I(e,t.attributes.NAME);if(n&&!t.sidx){var r=t.segments[0],a=v(n.segments,function(t){return Math.abs(t.presentationTime-r.presentationTime)<1/60});if(-1===a)return j({playlist:t,mediaSequence:n.mediaSequence+n.segments.length}),t.segments[0].discontinuity=!0,t.discontinuityStarts.unshift(0),void((!n.segments.length&&t.timeline>n.timeline||n.segments.length&&t.timeline>n.segments[n.segments.length-1].timeline)&&t.discontinuitySequence--);n.segments[a].discontinuity&&!r.discontinuity&&(r.discontinuity=!0,t.discontinuityStarts.unshift(0),t.discontinuitySequence--),j({playlist:t,mediaSequence:n.segments[a].number})}})},L=function(t){var e=t.oldManifest,n=t.newManifest,i=e.playlists.concat(O(e)),r=n.playlists.concat(O(n));return n.timelineStarts=A([e.timelineStarts,n.timelineStarts]),P({oldPlaylists:i,newPlaylists:r,timelineStarts:n.timelineStarts}),n},D=function(t){return t&&t.uri+"-"+w(t.byterange)},M=function(t){return d(t.reduce(function(t,e){var n=e.attributes.id+(e.attributes.lang||"");if(t[n]){if(e.segments){var i;e.segments[0]&&(e.segments[0].discontinuity=!0),(i=t[n].segments).push.apply(i,e.segments)}e.attributes.contentProtection&&(t[n].attributes.contentProtection=e.attributes.contentProtection)}else t[n]=e,t[n].attributes.timelineStarts=[];return t[n].attributes.timelineStarts.push({start:e.attributes.periodStart,timeline:e.attributes.periodStart}),t},{})).map(function(t){return t.discontinuityStarts=m(t.segments||[],"discontinuity"),t})},N=function(t,e){var n=D(t.sidx),i=n&&e[n]&&e[n].sidx;return i&&E(t,i,t.sidx.resolvedUri),t},R=function(t,e){if(void 0===e&&(e={}),!Object.keys(e).length)return t;for(var n in t)t[n]=N(t[n],e);return t},B=function(t,e){var n,i=t.attributes,r=t.segments,a=t.sidx,o=t.mediaSequence,s=t.discontinuitySequence,l=t.discontinuityStarts,c={attributes:(n={NAME:i.id,BANDWIDTH:i.bandwidth,CODECS:i.codecs},n["PROGRAM-ID"]=1,n),uri:"",endList:"static"===i.type,timeline:i.periodStart,resolvedUri:"",targetDuration:i.duration,discontinuitySequence:s,discontinuityStarts:l,timelineStarts:i.timelineStarts,mediaSequence:o,segments:r};return i.contentProtection&&(c.contentProtection=i.contentProtection),a&&(c.sidx=a),e&&(c.attributes.AUDIO="audio",c.attributes.SUBTITLES="subs"),c},U=function(t){var e,n=t.attributes,i=t.segments,r=t.mediaSequence,a=t.discontinuityStarts,o=t.discontinuitySequence;void 0===i&&(i=[{uri:n.baseUrl,timeline:n.periodStart,resolvedUri:n.baseUrl||"",duration:n.sourceDuration,number:0}],n.duration=n.sourceDuration);var s=(e={NAME:n.id,BANDWIDTH:n.bandwidth},e["PROGRAM-ID"]=1,e);return n.codecs&&(s.CODECS=n.codecs),{attributes:s,uri:"",endList:"static"===n.type,timeline:n.periodStart,resolvedUri:n.baseUrl||"",targetDuration:n.duration,timelineStarts:n.timelineStarts,discontinuityStarts:a,discontinuitySequence:o,mediaSequence:r,segments:i}},F=function(t,e,n){void 0===e&&(e={}),void 0===n&&(n=!1);var i,r=t.reduce(function(t,r){var a=r.attributes.role&&r.attributes.role.value||"",o=r.attributes.lang||"",s=r.attributes.label||"main";if(o&&!r.attributes.label){var l=a?" ("+a+")":"";s=""+r.attributes.lang+l}t[s]||(t[s]={language:o,autoselect:!0,default:"main"===a,playlists:[],uri:""});var c=N(B(r,n),e);return t[s].playlists.push(c),void 0===i&&"main"===a&&(i=r,i.default=!0),t},{});if(!i){r[Object.keys(r)[0]].default=!0}return r},z=function(t,e){return void 0===e&&(e={}),t.reduce(function(t,n){var i=n.attributes.lang||"text";return t[i]||(t[i]={language:i,default:!1,autoselect:!1,playlists:[],uri:""}),t[i].playlists.push(N(U(n),e)),t},{})},H=function(t){return t.reduce(function(t,e){return e?(e.forEach(function(e){var n=e.channel,i=e.language;t[i]={autoselect:!1,default:!1,instreamId:n,language:i},e.hasOwnProperty("aspectRatio")&&(t[i].aspectRatio=e.aspectRatio),e.hasOwnProperty("easyReader")&&(t[i].easyReader=e.easyReader),e.hasOwnProperty("3D")&&(t[i]["3D"]=e["3D"])}),t):t},{})},V=function(t){var e,n=t.attributes,i=t.segments,r=t.sidx,a=t.discontinuityStarts,o={attributes:(e={NAME:n.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:n.width,height:n.height},CODECS:n.codecs,BANDWIDTH:n.bandwidth},e["PROGRAM-ID"]=1,e),uri:"",endList:"static"===n.type,timeline:n.periodStart,resolvedUri:"",targetDuration:n.duration,discontinuityStarts:a,timelineStarts:n.timelineStarts,segments:i};return n.frameRate&&(o.attributes["FRAME-RATE"]=n.frameRate),n.contentProtection&&(o.contentProtection=n.contentProtection),r&&(o.sidx=r),o},$=function(t){var e=t.attributes;return"video/mp4"===e.mimeType||"video/webm"===e.mimeType||"video"===e.contentType},X=function(t){var e=t.attributes;return"audio/mp4"===e.mimeType||"audio/webm"===e.mimeType||"audio"===e.contentType},Y=function(t){var e=t.attributes;return"text/vtt"===e.mimeType||"text"===e.contentType},W=function(t,e){t.forEach(function(t){t.mediaSequence=0,t.discontinuitySequence=v(e,function(e){return e.timeline===t.timeline}),t.segments&&t.segments.forEach(function(t,e){t.number=e})})},q=function(t){return t?Object.keys(t).reduce(function(e,n){var i=t[n];return e.concat(i.playlists)},[]):[]},G=function(t){var e,n=t.dashPlaylists,i=t.locations,r=t.sidxMapping,a=void 0===r?{}:r,o=t.previousManifest;if(!n.length)return{};var s=n[0].attributes,l=s.sourceDuration,c=s.type,u=s.suggestedPresentationDelay,d=s.minimumUpdatePeriod,p=M(n.filter($)).map(V),f=M(n.filter(X)),h=M(n.filter(Y)),m=n.map(function(t){return t.attributes.captionServices}).filter(Boolean),v={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(e={AUDIO:{},VIDEO:{}},e["CLOSED-CAPTIONS"]={},e.SUBTITLES={},e),uri:"",duration:l,playlists:R(p,a)};d>=0&&(v.minimumUpdatePeriod=1e3*d),i&&(v.locations=i),"dynamic"===c&&(v.suggestedPresentationDelay=u);var g=0===v.playlists.length,y=f.length?F(f,a,g):null,b=h.length?z(h,a):null,w=p.concat(q(y),q(b)),_=w.map(function(t){return t.timelineStarts});return v.timelineStarts=A(_),W(w,v.timelineStarts),y&&(v.mediaGroups.AUDIO.audio=y),b&&(v.mediaGroups.SUBTITLES.subs=b),m.length&&(v.mediaGroups["CLOSED-CAPTIONS"].cc=H(m)),o?L({oldManifest:o,newManifest:v}):v},J=function(t,e,n){var i=t.NOW,r=t.clientOffset,a=t.availabilityStartTime,o=t.timescale,s=void 0===o?1:o,l=t.periodStart,c=void 0===l?0:l,u=t.minimumUpdatePeriod,d=void 0===u?0:u,p=(i+r)/1e3,f=a+c,h=p+d,m=h-f;return Math.ceil((m*s-e)/n)},K=function(t,e){for(var n=t.type,i=t.minimumUpdatePeriod,r=void 0===i?0:i,a=t.media,o=void 0===a?"":a,s=t.sourceDuration,l=t.timescale,c=void 0===l?1:l,u=t.startNumber,d=void 0===u?1:u,p=t.periodStart,f=[],h=-1,m=0;m<e.length;m++){var v=e[m],g=v.d,y=v.r||0,b=v.t||0;h<0&&(h=b),b&&b>h&&(h=b);var w=void 0;if(y<0){var _=m+1;w=_===e.length?"dynamic"===n&&r>0&&o.indexOf("$Number$")>0?J(t,h,g):(s*c-h)/g:(e[_].t-h)/g}else w=y+1;for(var T=d+f.length+w,x=d+f.length;x<T;)f.push({number:x,duration:g/c,time:h,timeline:p}),h+=g,x++}return f},Z=/\$([A-z]*)(?:(%0)([0-9]+)d)?\$/g,Q=function(t){return function(e,n,i,r){if("$$"===e)return"$";if(void 0===t[n])return e;var a=""+t[n];return"RepresentationID"===n?a:(r=i?parseInt(r,10):1,a.length>=r?a:""+new Array(r-a.length+1).join("0")+a)}},tt=function(t,e){return t.replace(Z,Q(e))},et=function(t,e){return t.duration||e?t.duration?k(t):K(t,e):[{number:t.startNumber||1,duration:t.sourceDuration,time:0,timeline:t.periodStart}]},nt=function(t,e){var n={RepresentationID:t.id,Bandwidth:t.bandwidth||0},r=t.initialization,a=void 0===r?{sourceURL:"",range:""}:r,o=b({baseUrl:t.baseUrl,source:tt(a.sourceURL,n),range:a.range});return et(t,e).map(function(e){n.Number=e.number,n.Time=e.time;var r=tt(t.media||"",n),a=t.timescale||1,s=t.presentationTimeOffset||0,l=t.periodStart+(e.time-s)/a;return{uri:r,timeline:e.timeline,duration:e.duration,resolvedUri:Object(i.a)(t.baseUrl||"",r),map:o,number:e.number,presentationTime:l}})},it=function(t,e){var n=t.baseUrl,i=t.initialization,r=void 0===i?{}:i,a=b({baseUrl:n,source:r.sourceURL,range:r.range}),o=b({baseUrl:n,source:e.media,range:e.mediaRange});return o.map=a,o},rt=function(t,e){var n=t.duration,i=t.segmentUrls,r=void 0===i?[]:i,a=t.periodStart;if(!n&&!e||n&&e)throw new Error(y.SEGMENT_TIME_UNSPECIFIED);var o,s=r.map(function(e){return it(t,e)});return n&&(o=k(t)),e&&(o=K(t,e)),o.map(function(e,n){if(s[n]){var i=s[n],r=t.timescale||1,o=t.presentationTimeOffset||0;return i.timeline=e.timeline,i.duration=e.duration,i.number=e.number,i.presentationTime=a+(e.time-o)/r,i}}).filter(function(t){return t})},at=function(t){var e,n,i=t.attributes,r=t.segmentInfo;r.template?(n=nt,e=u(i,r.template)):r.base?(n=S,e=u(i,r.base)):r.list&&(n=rt,e=u(i,r.list));var a={attributes:i};if(!n)return a;var o=n(e,r.segmentTimeline);if(e.duration){var s=e,l=s.duration,c=s.timescale,d=void 0===c?1:c;e.duration=l/d}else o.length?e.duration=o.reduce(function(t,e){return Math.max(t,Math.ceil(e.duration))},0):e.duration=0;return a.attributes=e,a.segments=o,r.base&&e.indexRange&&(a.sidx=o[0],a.segments=[]),a},ot=function(t){return t.map(at)},st=function(t,e){return h(t.childNodes).filter(function(t){return t.tagName===e})},lt=function(t){return t.textContent.trim()},ct=function(t){return parseFloat(t.split("/").reduce(function(t,e){return t/e}))},ut=function(t){var e=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/,n=e.exec(t);if(!n)return 0;var i=n.slice(1),r=i[0],a=i[1],o=i[2],s=i[3],l=i[4],c=i[5];return 31536e3*parseFloat(r||0)+2592e3*parseFloat(a||0)+86400*parseFloat(o||0)+3600*parseFloat(s||0)+60*parseFloat(l||0)+parseFloat(c||0)},dt=function(t){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(t)&&(t+="Z"),Date.parse(t)},pt={mediaPresentationDuration:function(t){return ut(t)},availabilityStartTime:function(t){return dt(t)/1e3},minimumUpdatePeriod:function(t){return ut(t)},suggestedPresentationDelay:function(t){return ut(t)},type:function(t){return t},timeShiftBufferDepth:function(t){return ut(t)},start:function(t){return ut(t)},width:function(t){return parseInt(t,10)},height:function(t){return parseInt(t,10)},bandwidth:function(t){return parseInt(t,10)},frameRate:function(t){return ct(t)},startNumber:function(t){return parseInt(t,10)},timescale:function(t){return parseInt(t,10)},presentationTimeOffset:function(t){return parseInt(t,10)},duration:function(t){var e=parseInt(t,10);return isNaN(e)?ut(t):e},d:function(t){return parseInt(t,10)},t:function(t){return parseInt(t,10)},r:function(t){return parseInt(t,10)},DEFAULT:function(t){return t}},ft=function(t){return t&&t.attributes?h(t.attributes).reduce(function(t,e){var n=pt[e.name]||pt.DEFAULT;return t[e.name]=n(e.value),t},{}):{}},ht={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},mt=function(t,e){return e.length?f(t.map(function(t){return e.map(function(e){return Object(i.a)(t,lt(e))})})):t},vt=function(t){var e=st(t,"SegmentTemplate")[0],n=st(t,"SegmentList")[0],i=n&&st(n,"SegmentURL").map(function(t){return u({tag:"SegmentURL"},ft(t))}),r=st(t,"SegmentBase")[0],a=n||e,o=a&&st(a,"SegmentTimeline")[0],s=n||r||e,l=s&&st(s,"Initialization")[0],c=e&&ft(e);c&&l?c.initialization=l&&ft(l):c&&c.initialization&&(c.initialization={sourceURL:c.initialization});var d={template:c,segmentTimeline:o&&st(o,"S").map(function(t){return ft(t)}),list:n&&u(ft(n),{segmentUrls:i,initialization:ft(l)}),base:r&&u(ft(r),{initialization:ft(l)})};return Object.keys(d).forEach(function(t){d[t]||delete d[t]}),d},gt=function(t,e,n){return function(i){var r=st(i,"BaseURL"),a=mt(e,r),o=u(t,ft(i)),s=vt(i);return a.map(function(t){return{segmentInfo:u(n,s),attributes:u(o,{baseUrl:t})}})}},yt=function(t){return t.reduce(function(t,e){var n=ft(e);n.schemeIdUri&&(n.schemeIdUri=n.schemeIdUri.toLowerCase());var i=ht[n.schemeIdUri];if(i){t[i]={attributes:n};var r=st(e,"cenc:pssh")[0];if(r){var a=lt(r);t[i].pssh=a&&Object(s.a)(a)}}return t},{})},bt=function(t){if("urn:scte:dash:cc:cea-608:2015"===t.schemeIdUri){return("string"!=typeof t.value?[]:t.value.split(";")).map(function(t){var e,n;if(n=t,/^CC\d=/.test(t)){var i=t.split("=");e=i[0],n=i[1]}else/^CC\d$/.test(t)&&(e=t);return{channel:e,language:n}})}if("urn:scte:dash:cc:cea-708:2015"===t.schemeIdUri){return("string"!=typeof t.value?[]:t.value.split(";")).map(function(t){var e={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(t)){var n=t.split("="),i=n[0],r=n[1],a=void 0===r?"":r;e.channel=i,e.language=t,a.split(",").forEach(function(t){var n=t.split(":"),i=n[0],r=n[1];"lang"===i?e.language=r:"er"===i?e.easyReader=Number(r):"war"===i?e.aspectRatio=Number(r):"3D"===i&&(e["3D"]=Number(r))})}else e.language=t;return e.channel&&(e.channel="SERVICE"+e.channel),e})}},wt=function(t,e,n){return function(i){var r=ft(i),a=mt(e,st(i,"BaseURL")),o=st(i,"Role")[0],s={role:ft(o)},l=u(t,r,s),c=st(i,"Accessibility")[0],d=bt(ft(c));d&&(l=u(l,{captionServices:d}));var p=st(i,"Label")[0];if(p&&p.childNodes.length){var h=p.childNodes[0].nodeValue.trim();l=u(l,{label:h})}var m=yt(st(i,"ContentProtection"));Object.keys(m).length&&(l=u(l,{contentProtection:m}));var v=vt(i),g=st(i,"Representation"),y=u(n,v);return f(g.map(gt(l,a,y)))}},_t=function(t,e){return function(n,i){var r=mt(e,st(n.node,"BaseURL")),a=u(t,{periodStart:n.attributes.start});"number"==typeof n.attributes.duration&&(a.periodDuration=n.attributes.duration);var o=st(n.node,"AdaptationSet"),s=vt(n.node);return f(o.map(wt(a,r,s)))}},Tt=function(t){var e=t.attributes,n=t.priorPeriodAttributes,i=t.mpdType;return"number"==typeof e.start?e.start:n&&"number"==typeof n.start&&"number"==typeof n.duration?n.start+n.duration:n||"static"!==i?null:0},xt=function(t,e){void 0===e&&(e={});var n=e,i=n.manifestUri,r=void 0===i?"":i,a=n.NOW,o=void 0===a?Date.now():a,s=n.clientOffset,l=void 0===s?0:s,c=st(t,"Period");if(!c.length)throw new Error(y.INVALID_NUMBER_OF_PERIOD);var u=st(t,"Location"),d=ft(t),p=mt([r],st(t,"BaseURL"));d.type=d.type||"static",d.sourceDuration=d.mediaPresentationDuration||0,d.NOW=o,d.clientOffset=l,u.length&&(d.locations=u.map(lt));var h=[];return c.forEach(function(t,e){var n=ft(t),i=h[e-1];n.start=Tt({attributes:n,priorPeriodAttributes:i?i.attributes:null,mpdType:d.type}),h.push({node:t,attributes:n})}),{locations:d.locations,representationInfo:f(h.map(_t(d,p)))}},kt=function(t){if(""===t)throw new Error(y.DASH_EMPTY_MANIFEST);var e,n,i=new l.DOMParser;try{e=i.parseFromString(t,"application/xml"),n=e&&"MPD"===e.documentElement.tagName?e.documentElement:null}catch(t){}if(!n||n&&n.getElementsByTagName("parsererror").length>0)throw new Error(y.DASH_INVALID_XML);return n},St=function(t){var e=st(t,"UTCTiming")[0];if(!e)return null;var n=ft(e);switch(n.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":n.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":n.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":n.method="DIRECT",n.value=Date.parse(n.value);break;case"urn:mpeg:dash:utc:http-ntp:2014":case"urn:mpeg:dash:utc:ntp:2014":case"urn:mpeg:dash:utc:sntp:2014":default:throw new Error(y.UNSUPPORTED_UTC_TIMING_SCHEME)}return n},Et=function(t,e){void 0===e&&(e={});var n=xt(kt(t),e),i=ot(n.representationInfo);return G({dashPlaylists:i,locations:n.locations,sidxMapping:e.sidxMapping,previousManifest:e.previousManifest})},Ct=function(t){return St(kt(t))}},function(t,e,n){(function(e){var n;n="undefined"!=typeof window?window:void 0!==e?e:"undefined"!=typeof self?self:{},t.exports=n}).call(e,n(4))},function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=function(t,e,n){e.forEach(function(e){for(var i in t.mediaGroups[e])for(var r in t.mediaGroups[e][i]){var a=t.mediaGroups[e][i][r];n(a,e,i,r)}})}},function(t,e,n){var i=n(30);e.DOMImplementation=i.DOMImplementation,e.XMLSerializer=i.XMLSerializer,e.DOMParser=n(119).DOMParser},function(t,e,n){function i(t){return t.replace(/\r[\n\u0085]/g,"\n").replace(/[\r\u0085\u2028]/g,"\n")}function r(t){this.options=t||{locator:{}}}function a(t,e,n){function i(e){var i=t[e];!i&&a&&(i=2==t.length?function(n){t(e,n)}:t),r[e]=i&&function(t){i("[xmldom "+e+"]\t"+t+l(n))}||function(){}}if(!t){if(e instanceof o)return e;t=e}var r={},a=t instanceof Function;return n=n||{},i("warning"),i("error"),i("fatalError"),r}function o(){this.cdata=!1}function s(t,e){e.lineNumber=t.lineNumber,e.columnNumber=t.columnNumber}function l(t){if(t)return"\n@"+(t.systemId||"")+"#[line:"+t.lineNumber+",col:"+t.columnNumber+"]"}function c(t,e,n){return"string"==typeof t?t.substr(e,n):t.length>=e+n||e?new java.lang.String(t,e,n)+"":t}function u(t,e){t.currentElement?t.currentElement.appendChild(e):t.doc.appendChild(e)}var d=n(11),p=n(30),f=n(120),h=n(121),m=p.DOMImplementation,v=d.NAMESPACE,g=h.ParseError,y=h.XMLReader;r.prototype.parseFromString=function(t,e){var n=this.options,r=new y,s=n.domBuilder||new o,l=n.errorHandler,c=n.locator,u=n.xmlns||{},d=/\/x?html?$/.test(e),p=d?f.HTML_ENTITIES:f.XML_ENTITIES;c&&s.setDocumentLocator(c),r.errorHandler=a(l,s,c),r.domBuilder=n.domBuilder||s,d&&(u[""]=v.HTML),u.xml=u.xml||v.XML;var h=n.normalizeLineEndings||i;return t&&"string"==typeof t?r.parse(h(t),u,p):r.errorHandler.error("invalid doc source"),s.doc},o.prototype={startDocument:function(){this.doc=(new m).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(t,e,n,i){var r=this.doc,a=r.createElementNS(t,n||e),o=i.length;u(this,a),this.currentElement=a,this.locator&&s(this.locator,a);for(var l=0;l<o;l++){var t=i.getURI(l),c=i.getValue(l),n=i.getQName(l),d=r.createAttributeNS(t,n);this.locator&&s(i.getLocator(l),d),d.value=d.nodeValue=c,a.setAttributeNode(d)}},endElement:function(t,e,n){var i=this.currentElement;i.tagName;this.currentElement=i.parentNode},startPrefixMapping:function(t,e){},endPrefixMapping:function(t){},processingInstruction:function(t,e){var n=this.doc.createProcessingInstruction(t,e);this.locator&&s(this.locator,n),u(this,n)},ignorableWhitespace:function(t,e,n){},characters:function(t,e,n){if(t=c.apply(this,arguments)){if(this.cdata)var i=this.doc.createCDATASection(t);else var i=this.doc.createTextNode(t);this.currentElement?this.currentElement.appendChild(i):/^\s*$/.test(t)&&this.doc.appendChild(i),this.locator&&s(this.locator,i)}},skippedEntity:function(t){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(t){(this.locator=t)&&(t.lineNumber=0)},comment:function(t,e,n){t=c.apply(this,arguments);var i=this.doc.createComment(t);this.locator&&s(this.locator,i),u(this,i)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(t,e,n){var i=this.doc.implementation;if(i&&i.createDocumentType){var r=i.createDocumentType(t,e,n);this.locator&&s(this.locator,r),u(this,r),this.doc.doctype=r}},warning:function(t){console.warn("[xmldom warning]\t"+t,l(this.locator))},error:function(t){console.error("[xmldom error]\t"+t,l(this.locator))},fatalError:function(t){throw new g(t,this.locator)}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,function(t){o.prototype[t]=function(){return null}}),e.__DOMHandler=o,e.normalizeLineEndings=i,e.DOMParser=r},function(t,e,n){var i=n(11).freeze;e.XML_ENTITIES=i({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),e.HTML_ENTITIES=i({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"À",Aacute:"Á",Acirc:"Â",Atilde:"Ã",Auml:"Ä",Aring:"Å",AElig:"Æ",Ccedil:"Ç",Egrave:"È",Eacute:"É",Ecirc:"Ê",Euml:"Ë",Igrave:"Ì",Iacute:"Í",Icirc:"Î",Iuml:"Ï",ETH:"Ð",Ntilde:"Ñ",Ograve:"Ò",Oacute:"Ó",Ocirc:"Ô",Otilde:"Õ",Ouml:"Ö",Oslash:"Ø",Ugrave:"Ù",Uacute:"Ú",Ucirc:"Û",Uuml:"Ü",Yacute:"Ý",THORN:"Þ",szlig:"ß",agrave:"à",aacute:"á",acirc:"â",atilde:"ã",auml:"ä",aring:"å",aelig:"æ",ccedil:"ç",egrave:"è",eacute:"é",ecirc:"ê",euml:"ë",igrave:"ì",iacute:"í",icirc:"î",iuml:"ï",eth:"ð",ntilde:"ñ",ograve:"ò",oacute:"ó",ocirc:"ô",otilde:"õ",ouml:"ö",oslash:"ø",ugrave:"ù",uacute:"ú",ucirc:"û",uuml:"ü",yacute:"ý",thorn:"þ",yuml:"ÿ",nbsp:" ",iexcl:"¡",cent:"¢",pound:"£",curren:"¤",yen:"¥",brvbar:"¦",sect:"§",uml:"¨",copy:"©",ordf:"ª",laquo:"«",not:"¬",shy:"",reg:"®",macr:"¯",deg:"°",plusmn:"±",sup2:"²",sup3:"³",acute:"´",micro:"µ",para:"¶",middot:"·",cedil:"¸",sup1:"¹",ordm:"º",raquo:"»",frac14:"¼",frac12:"½",frac34:"¾",iquest:"¿",times:"×",divide:"÷",forall:"∀",part:"∂",exist:"∃",empty:"∅",nabla:"∇",isin:"∈",notin:"∉",ni:"∋",prod:"∏",sum:"∑",minus:"−",lowast:"∗",radic:"√",prop:"∝",infin:"∞",ang:"∠",and:"∧",or:"∨",cap:"∩",cup:"∪",int:"∫",there4:"∴",sim:"∼",cong:"≅",asymp:"≈",ne:"≠",equiv:"≡",le:"≤",ge:"≥",sub:"⊂",sup:"⊃",nsub:"⊄",sube:"⊆",supe:"⊇",oplus:"⊕",otimes:"⊗",perp:"⊥",sdot:"⋅",Alpha:"Α",Beta:"Β",Gamma:"Γ",Delta:"Δ",Epsilon:"Ε",Zeta:"Ζ",Eta:"Η",Theta:"Θ",Iota:"Ι",Kappa:"Κ",Lambda:"Λ",Mu:"Μ",Nu:"Ν",Xi:"Ξ",Omicron:"Ο",Pi:"Π",Rho:"Ρ",Sigma:"Σ",Tau:"Τ",Upsilon:"Υ",Phi:"Φ",Chi:"Χ",Psi:"Ψ",Omega:"Ω",alpha:"α",beta:"β",gamma:"γ",delta:"δ",epsilon:"ε",zeta:"ζ",eta:"η",theta:"θ",iota:"ι",kappa:"κ",lambda:"λ",mu:"μ",nu:"ν",xi:"ξ",omicron:"ο",pi:"π",rho:"ρ",sigmaf:"ς",sigma:"σ",tau:"τ",upsilon:"υ",phi:"φ",chi:"χ",psi:"ψ",omega:"ω",thetasym:"ϑ",upsih:"ϒ",piv:"ϖ",OElig:"Œ",oelig:"œ",Scaron:"Š",scaron:"š",Yuml:"Ÿ",fnof:"ƒ",circ:"ˆ",tilde:"˜",ensp:" ",emsp:" ",thinsp:" ",zwnj:"",zwj:"",lrm:"",rlm:"",ndash:"–",mdash:"—",lsquo:"‘",rsquo:"’",sbquo:"‚",ldquo:"“",rdquo:"”",bdquo:"„",dagger:"†",Dagger:"‡",bull:"•",hellip:"…",permil:"‰",prime:"′",Prime:"″",lsaquo:"‹",rsaquo:"›",oline:"‾",euro:"€",trade:"™",larr:"←",uarr:"↑",rarr:"→",darr:"↓",harr:"↔",crarr:"↵",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",loz:"◊",spades:"♠",clubs:"♣",hearts:"♥",diams:"♦"}),e.entityMap=e.HTML_ENTITIES},function(t,e,n){function i(t,e){this.message=t,this.locator=e,Error.captureStackTrace&&Error.captureStackTrace(this,i)}function r(){}function a(t,e,n,r,a){function d(t){if(t>65535){t-=65536;var e=55296+(t>>10),n=56320+(1023&t);return String.fromCharCode(e,n)}return String.fromCharCode(t)}function m(t){var e=t.slice(1,-1);return Object.hasOwnProperty.call(n,e)?n[e]:"#"===e.charAt(0)?d(parseInt(e.substr(1).replace("x","0x"))):(a.error("entity not found:"+t),t)}function g(e){if(e>S){var n=t.substring(S,e).replace(/&#?\w+;/g,m);T&&y(S),r.characters(n,0,e-S),S=e}}function y(e,n){for(;e>=w&&(n=_.exec(t));)b=n.index,w=b+n[0].length,T.lineNumber++;T.columnNumber=e-b+1}for(var b=0,w=0,_=/.*(?:\r\n?|\n)|.*$/g,T=r.locator,x=[{currentNSMap:e}],k={},S=0;;){try{var E=t.indexOf("<",S);if(E<0){if(!t.substr(S).match(/^\s*$/)){var C=r.doc,A=C.createTextNode(t.substr(S));C.appendChild(A),r.currentElement=A}return}switch(E>S&&g(E),t.charAt(E+1)){case"/":var I=t.indexOf(">",E+3),O=t.substring(E+2,I).replace(/[ \t\n\r]+$/g,""),j=x.pop();I<0?(O=t.substring(E+2).replace(/[\s<].*/,""),a.error("end tag name: "+O+" is not complete:"+j.tagName),I=E+1+O.length):O.match(/\s</)&&(O=O.replace(/[\s<].*/,""),a.error("end tag name: "+O+" maybe not complete"),I=E+1+O.length);var P=j.localNSMap,L=j.tagName==O;if(L||j.tagName&&j.tagName.toLowerCase()==O.toLowerCase()){if(r.endElement(j.uri,j.localName,O),P)for(var D in P)Object.prototype.hasOwnProperty.call(P,D)&&r.endPrefixMapping(D);L||a.fatalError("end tag name: "+O+" is not match the current start tagName:"+j.tagName)}else x.push(j);I++;break;case"?":T&&y(E),I=f(t,E,r);break;case"!":T&&y(E),I=p(t,E,r,a);break;default:T&&y(E);var M=new h,N=x[x.length-1].currentNSMap,I=s(t,E,M,N,m,a),R=M.length;if(!M.closed&&u(t,I,M.tagName,k)&&(M.closed=!0,n.nbsp||a.warning("unclosed xml attribute")),T&&R){for(var B=o(T,{}),U=0;U<R;U++){var F=M[U];y(F.offset),F.locator=o(T,{})}r.locator=B,l(M,r,N)&&x.push(M),r.locator=T}else l(M,r,N)&&x.push(M);v.isHTML(M.uri)&&!M.closed?I=c(t,I,M.tagName,m,r):I++}}catch(t){if(t instanceof i)throw t;a.error("element parse error: "+t),I=-1}I>S?S=I:g(Math.max(E,S)+1)}}function o(t,e){return e.lineNumber=t.lineNumber,e.columnNumber=t.columnNumber,e}function s(t,e,n,i,r,a){function o(t,e,i){n.attributeNames.hasOwnProperty(t)&&a.fatalError("Attribute "+t+" redefined"),n.addValue(t,e.replace(/[\t\n\r]/g," ").replace(/&#?\w+;/g,r),i)}for(var s,l,c=++e,u=w;;){var d=t.charAt(c);switch(d){case"=":if(u===_)s=t.slice(e,c),u=x;else{if(u!==T)throw new Error("attribute equal must after attrName");u=x}break;case"'":case'"':if(u===x||u===_){if(u===_&&(a.warning('attribute value must after "="'),s=t.slice(e,c)),e=c+1,!((c=t.indexOf(d,e))>0))throw new Error("attribute value no end '"+d+"' match");l=t.slice(e,c),o(s,l,e-1),u=S}else{if(u!=k)throw new Error('attribute value must after "="');l=t.slice(e,c),o(s,l,e),a.warning('attribute "'+s+'" missed start quot('+d+")!!"),e=c+1,u=S}break;case"/":switch(u){case w:n.setTagName(t.slice(e,c));case S:case E:case C:u=C,n.closed=!0;case k:case _:case T:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return a.error("unexpected end of input"),u==w&&n.setTagName(t.slice(e,c)),c;case">":switch(u){case w:n.setTagName(t.slice(e,c));case S:case E:case C:break;case k:case _:l=t.slice(e,c),"/"===l.slice(-1)&&(n.closed=!0,l=l.slice(0,-1));case T:u===T&&(l=s),u==k?(a.warning('attribute "'+l+'" missed quot(")!'),o(s,l,e)):(v.isHTML(i[""])&&l.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+l+'" missed value!! "'+l+'" instead!!'),o(l,l,e));break;case x:throw new Error("attribute value missed!!")}return c;case"":d=" ";default:if(d<=" ")switch(u){case w:n.setTagName(t.slice(e,c)),u=E;break;case _:s=t.slice(e,c),u=T;break;case k:var l=t.slice(e,c);a.warning('attribute "'+l+'" missed quot(")!!'),o(s,l,e);case S:u=E}else switch(u){case T:n.tagName;v.isHTML(i[""])&&s.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+s+'" missed value!! "'+s+'" instead2!!'),o(s,s,e),e=c,u=_;break;case S:a.warning('attribute space is required"'+s+'"!!');case E:u=_,e=c;break;case x:u=k,e=c;break;case C:throw new Error("elements closed character '/' and '>' must be connected to")}}c++}}function l(t,e,n){for(var i=t.tagName,r=null,a=t.length;a--;){var o=t[a],s=o.qName,l=o.value,c=s.indexOf(":");if(c>0)var u=o.prefix=s.slice(0,c),p=s.slice(c+1),f="xmlns"===u&&p;else p=s,u=null,f="xmlns"===s&&"";o.localName=p,!1!==f&&(null==r&&(r={},d(n,n={})),n[f]=r[f]=l,o.uri=v.XMLNS,e.startPrefixMapping(f,l))}for(var a=t.length;a--;){o=t[a];var u=o.prefix;u&&("xml"===u&&(o.uri=v.XML),"xmlns"!==u&&(o.uri=n[u||""]))}var c=i.indexOf(":");c>0?(u=t.prefix=i.slice(0,c),p=t.localName=i.slice(c+1)):(u=null,p=t.localName=i);var h=t.uri=n[u||""];if(e.startElement(h,p,i,t),!t.closed)return t.currentNSMap=n,t.localNSMap=r,!0;if(e.endElement(h,p,i),r)for(u in r)Object.prototype.hasOwnProperty.call(r,u)&&e.endPrefixMapping(u)}function c(t,e,n,i,r){if(/^(?:script|textarea)$/i.test(n)){var a=t.indexOf("</"+n+">",e),o=t.substring(e+1,a);if(/[&<]/.test(o))return/^script$/i.test(n)?(r.characters(o,0,o.length),a):(o=o.replace(/&#?\w+;/g,i),r.characters(o,0,o.length),a)}return e+1}function u(t,e,n,i){var r=i[n];return null==r&&(r=t.lastIndexOf("</"+n+">"),r<e&&(r=t.lastIndexOf("</"+n)),i[n]=r),r<e}function d(t,e){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}function p(t,e,n,i){switch(t.charAt(e+2)){case"-":if("-"===t.charAt(e+3)){var r=t.indexOf("--\x3e",e+4);return r>e?(n.comment(t,e+4,r-e-4),r+3):(i.error("Unclosed comment"),-1)}return-1;default:if("CDATA["==t.substr(e+3,6)){var r=t.indexOf("]]>",e+9);return n.startCDATA(),n.characters(t,e+9,r-e-9),n.endCDATA(),r+3}var a=m(t,e),o=a.length;if(o>1&&/!doctype/i.test(a[0][0])){var s=a[1][0],l=!1,c=!1;o>3&&(/^public$/i.test(a[2][0])?(l=a[3][0],c=o>4&&a[4][0]):/^system$/i.test(a[2][0])&&(c=a[3][0]));var u=a[o-1];return n.startDTD(s,l,c),n.endDTD(),u.index+u[0].length}}return-1}function f(t,e,n){var i=t.indexOf("?>",e);if(i){var r=t.substring(e,i).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(r){r[0].length;return n.processingInstruction(r[1],r[2]),i+2}return-1}return-1}function h(){this.attributeNames={}}function m(t,e){var n,i=[],r=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(r.lastIndex=e,r.exec(t);n=r.exec(t);)if(i.push(n),n[1])return i}var v=n(11).NAMESPACE,g=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,y=new RegExp("[\\-\\.0-9"+g.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),b=new RegExp("^"+g.source+y.source+"*(?::"+g.source+y.source+"*)?$"),w=0,_=1,T=2,x=3,k=4,S=5,E=6,C=7;i.prototype=new Error,i.prototype.name=i.name,r.prototype={parse:function(t,e,n){var i=this.domBuilder;i.startDocument(),d(e,e={}),a(t,e,n,i,this.errorHandler),i.endDocument()}},h.prototype={setTagName:function(t){if(!b.test(t))throw new Error("invalid tagName:"+t);this.tagName=t},addValue:function(t,e,n){if(!b.test(t))throw new Error("invalid attribute:"+t);this.attributeNames[t]=this.length,this[this.length++]={qName:t,value:e,offset:n}},length:0,getLocalName:function(t){return this[t].localName},getLocator:function(t){return this[t].locator},getQName:function(t){return this[t].qName},getURI:function(t){return this[t].uri},getValue:function(t){return this[t].value}},e.XMLReader=r,e.ParseError=i},function(t,e,n){var i=n(123).getUint64,r=function(t){var e=new DataView(t.buffer,t.byteOffset,t.byteLength),n={version:t[0],flags:new Uint8Array(t.subarray(1,4)),references:[],referenceId:e.getUint32(4),timescale:e.getUint32(8)},r=12;0===n.version?(n.earliestPresentationTime=e.getUint32(r),n.firstOffset=e.getUint32(r+4),r+=8):(n.earliestPresentationTime=i(t.subarray(r)),n.firstOffset=i(t.subarray(r+8)),r+=16),r+=2;var a=e.getUint16(r);for(r+=2;a>0;r+=12,a--)n.references.push({referenceType:(128&t[r])>>>7,referencedSize:2147483647&e.getUint32(r),subsegmentDuration:e.getUint32(r+4),startsWithSap:!!(128&t[r+8]),sapType:(112&t[r+8])>>>4,sapDeltaTime:268435455&e.getUint32(r+8)});return n};t.exports=r},function(t,e){var n=Math.pow(2,32),i=function(t){var e,i=new DataView(t.buffer,t.byteOffset,t.byteLength);return i.getBigUint64?(e=i.getBigUint64(0),e<Number.MAX_SAFE_INTEGER?Number(e):e):i.getUint32(0)*n+i.getUint32(4)};t.exports={getUint64:i,MAX_UINT32:n}},function(t,e,n){"use strict";n.d(e,"a",function(){return p}),n.d(e,"b",function(){return f});var i=n(6),r=n(125),a=n(127),o=n(31),s=n(128),l={webm:Object(i.k)([119,101,98,109]),matroska:Object(i.k)([109,97,116,114,111,115,107,97]),flac:Object(i.k)([102,76,97,67]),ogg:Object(i.k)([79,103,103,83]),ac3:Object(i.k)([11,119]),riff:Object(i.k)([82,73,70,70]),avi:Object(i.k)([65,86,73]),wav:Object(i.k)([87,65,86,69]),"3gp":Object(i.k)([102,116,121,112,51,103]),mp4:Object(i.k)([102,116,121,112]),fmp4:Object(i.k)([115,116,121,112]),mov:Object(i.k)([102,116,121,112,113,116]),moov:Object(i.k)([109,111,111,118]),moof:Object(i.k)([109,111,111,102])},c={aac:function(t){var e=Object(o.a)(t);return Object(i.a)(t,[255,16],{offset:e,mask:[255,22]})},mp3:function(t){var e=Object(o.a)(t);return Object(i.a)(t,[255,2],{offset:e,mask:[255,6]})},webm:function(t){var e=Object(a.b)(t,[a.a.EBML,a.a.DocType])[0];return Object(i.a)(e,l.webm)},mkv:function(t){var e=Object(a.b)(t,[a.a.EBML,a.a.DocType])[0];return Object(i.a)(e,l.matroska)},mp4:function(t){return!c["3gp"](t)&&!c.mov(t)&&(!(!Object(i.a)(t,l.mp4,{offset:4})&&!Object(i.a)(t,l.fmp4,{offset:4}))||(!(!Object(i.a)(t,l.moof,{offset:4})&&!Object(i.a)(t,l.moov,{offset:4}))||void 0))},mov:function(t){return Object(i.a)(t,l.mov,{offset:4})},"3gp":function(t){return Object(i.a)(t,l["3gp"],{offset:4})},ac3:function(t){var e=Object(o.a)(t);return Object(i.a)(t,l.ac3,{offset:e})},ts:function(t){if(t.length<189&&t.length>=1)return 71===t[0];for(var e=0;e+188<t.length&&e<188;){if(71===t[e]&&71===t[e+188])return!0;e+=1}return!1},flac:function(t){var e=Object(o.a)(t);return Object(i.a)(t,l.flac,{offset:e})},ogg:function(t){return Object(i.a)(t,l.ogg)},avi:function(t){return Object(i.a)(t,l.riff)&&Object(i.a)(t,l.avi,{offset:8})},wav:function(t){return Object(i.a)(t,l.riff)&&Object(i.a)(t,l.wav,{offset:8})},h264:function(t){return Object(s.a)(t,7,3).length},h265:function(t){return Object(s.b)(t,[32,33],3).length}},u=Object.keys(c).filter(function(t){return"ts"!==t&&"h264"!==t&&"h265"!==t}).concat(["ts","h264","h265"]);u.forEach(function(t){var e=c[t];c[t]=function(t){return e(Object(i.k)(t))}});var d=c,p=function(t){t=Object(i.k)(t);for(var e=0;e<u.length;e++){var n=u[e];if(d[n](t))return n}return""},f=function(t){return Object(r.a)(t,["moof"]).length>0}},function(t,e,n){"use strict";n.d(e,"a",function(){return l});var i,r=n(6),a=(n(32),n(126),function(t){return"string"==typeof t?Object(r.h)(t):t}),o=function(t){return Array.isArray(t)?t.map(function(t){return a(t)}):[a(t)]},s=function(t){t=Object(r.k)(t);for(var e=[],n=0;t.length>n;){var a=t[n],o=0,s=0;s++;var l=t[s];for(s++;128&l;)o=(127&l)<<7,l=t[s],s++;o+=127&l;for(var c=0;c<i.length;c++){var u=i[c],d=u.id,p=u.parser;if(a===d){e.push(p(t.subarray(s,s+o)));break}}n+=o+s}return e};i=[{id:3,parser:function(t){var e={tag:3,id:t[0]<<8|t[1],flags:t[2],size:3,dependsOnEsId:0,ocrEsId:0,descriptors:[],url:""};if(128&e.flags&&(e.dependsOnEsId=t[e.size]<<8|t[e.size+1],e.size+=2),64&e.flags){var n=t[e.size];e.url=Object(r.c)(t.subarray(e.size+1,e.size+1+n)),e.size+=n}return 32&e.flags&&(e.ocrEsId=t[e.size]<<8|t[e.size+1],e.size+=2),e.descriptors=s(t.subarray(e.size))||[],e}},{id:4,parser:function(t){return{tag:4,oti:t[0],streamType:t[1],bufferSize:t[2]<<16|t[3]<<8|t[4],maxBitrate:t[5]<<24|t[6]<<16|t[7]<<8|t[8],avgBitrate:t[9]<<24|t[10]<<16|t[11]<<8|t[12],descriptors:s(t.subarray(13))}}},{id:5,parser:function(t){return{tag:5,bytes:t}}},{id:6,parser:function(t){return{tag:6,bytes:t}}}];var l=function t(e,n,i){void 0===i&&(i=!1),n=o(n),e=Object(r.k)(e);var a=[];if(!n.length)return a;for(var s=0;s<e.length;){var l=(e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3])>>>0,c=e.subarray(s+4,s+8);if(0===l)break;var u=s+l;if(u>e.length){if(i)break;u=e.length}var d=e.subarray(s+8,u);Object(r.a)(c,n[0])&&(1===n.length?a.push(d):a.push.apply(a,t(d,n.slice(1),i))),s=u}return a}},function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=(new Uint8Array([79,112,117,115,72,101,97,100]),function(t){var e=new DataView(t.buffer,t.byteOffset,t.byteLength),n=e.getUint8(0),i=0!==n,r={version:n,channels:e.getUint8(1),preSkip:e.getUint16(2,i),sampleRate:e.getUint32(4,i),outputGain:e.getUint16(8,i),channelMappingFamily:e.getUint8(10)};if(r.channelMappingFamily>0&&t.length>10){r.streamCount=e.getUint8(11),r.twoChannelStreamCount=e.getUint8(12),r.channelMapping=[];for(var a=0;a<r.channels;a++)r.channelMapping.push(e.getUint8(13+a))}return r})},function(t,e,n){"use strict";n.d(e,"a",function(){return r}),n.d(e,"b",function(){return d});var i=n(6),r=(n(32),{EBML:Object(i.k)([26,69,223,163]),DocType:Object(i.k)([66,130]),Segment:Object(i.k)([24,83,128,103]),SegmentInfo:Object(i.k)([21,73,169,102]),Tracks:Object(i.k)([22,84,174,107]),Track:Object(i.k)([174]),TrackNumber:Object(i.k)([215]),DefaultDuration:Object(i.k)([35,227,131]),TrackEntry:Object(i.k)([174]),TrackType:Object(i.k)([131]),FlagDefault:Object(i.k)([136]),CodecID:Object(i.k)([134]),CodecPrivate:Object(i.k)([99,162]),VideoTrack:Object(i.k)([224]),AudioTrack:Object(i.k)([225]),Cluster:Object(i.k)([31,67,182,117]),Timestamp:Object(i.k)([231]),TimestampScale:Object(i.k)([42,215,177]),BlockGroup:Object(i.k)([160]),BlockDuration:Object(i.k)([155]),Block:Object(i.k)([161]),SimpleBlock:Object(i.k)([163])}),a=[128,64,32,16,8,4,2,1],o=function(t){for(var e=1,n=0;n<a.length&&!(t&a[n]);n++)e++;return e},s=function(t,e,n,r){void 0===n&&(n=!0),void 0===r&&(r=!1);var s=o(t[e]),l=t.subarray(e,e+s);return n&&(l=Array.prototype.slice.call(t,e,e+s),l[0]^=a[s-1]),{length:s,value:Object(i.b)(l,{signed:r}),bytes:l}},l=function t(e){return"string"==typeof e?e.match(/.{1,2}/g).map(function(e){return t(e)}):"number"==typeof e?Object(i.f)(e):e},c=function(t){return Array.isArray(t)?t.map(function(t){return l(t)}):[l(t)]},u=function t(e,n,r){if(r>=n.length)return n.length;var a=s(n,r,!1);if(Object(i.a)(e.bytes,a.bytes))return r;var o=s(n,r+a.length);return t(e,n,r+o.length+o.value+a.length)},d=function t(e,n){n=c(n),e=Object(i.k)(e);var r=[];if(!n.length)return r;for(var a=0;a<e.length;){var o=s(e,a,!1),l=s(e,a+o.length),d=a+o.length+l.length;127===l.value&&(l.value=u(o,e,d),l.value!==e.length&&(l.value-=d));var p=d+l.value>e.length?e.length:d+l.value,f=e.subarray(d,p);Object(i.a)(n[0],o.bytes)&&(1===n.length?r.push(f):r=r.concat(t(f,n.slice(1))));a+=o.length+l.length+f.length}return r}},function(t,e,n){"use strict";n.d(e,"a",function(){return c}),n.d(e,"b",function(){return u});var i=n(6),r=Object(i.k)([0,0,0,1]),a=Object(i.k)([0,0,1]),o=Object(i.k)([0,0,3]),s=function(t){for(var e=[],n=1;n<t.length-2;)Object(i.a)(t.subarray(n,n+3),o)&&(e.push(n+2),n++),n++;if(0===e.length)return t;var r=t.length-e.length,a=new Uint8Array(r),s=0;for(n=0;n<r;s++,n++)s===e[0]&&(s++,e.shift()),a[n]=t[s];return a},l=function(t,e,n,o){void 0===o&&(o=1/0),t=Object(i.k)(t),n=[].concat(n);for(var l,c=0,u=0;c<t.length&&(u<o||l);){var d=void 0;if(Object(i.a)(t.subarray(c),r)?d=4:Object(i.a)(t.subarray(c),a)&&(d=3),d){if(u++,l)return s(t.subarray(l,c));var p=void 0;"h264"===e?p=31&t[c+d]:"h265"===e&&(p=t[c+d]>>1&63),-1!==n.indexOf(p)&&(l=c+d),c+=d+("h264"===e?1:2)}else c++}return t.subarray(0,0)},c=function(t,e,n){return l(t,"h264",e,n)},u=function(t,e,n){return l(t,"h265",e,n)}},function(t,e){var n,i,r,a,o,s,l;n=function(t){return 9e4*t},i=function(t,e){return t*e},r=function(t){return t/9e4},a=function(t,e){return t/e},o=function(t,e){return n(a(t,e))},s=function(t,e){return i(r(t),e)},l=function(t,e,n){return r(n?t:t-e)},t.exports={ONE_SECOND_IN_TS:9e4,secondsToVideoTs:n,secondsToAudioTs:i,videoTsToSeconds:r,audioTsToSeconds:a,audioTsToVideoTs:o,videoTsToAudioTs:s,metadataTsToSeconds:l}},function(t,e,n){function i(e){var n="function"==typeof Map?new Map:void 0;return t.exports=i=function(t){function e(){return s(t,arguments,r(this).constructor)}if(null===t||!o(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==n){if(n.has(t))return n.get(t);n.set(t,e)}return e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),a(e,t)},t.exports.__esModule=!0,t.exports.default=t.exports,i(e)}var r=n(131),a=n(9),o=n(132),s=n(27);t.exports=i,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function n(e){return t.exports=n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},t.exports.__esModule=!0,t.exports.default=t.exports,n(e)}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function n(t){return-1!==Function.toString.call(t).indexOf("[native code]")}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){var i=n(134);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("2480945a",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder,.vjs-icon-play{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder:before,.vjs-icon-play:before{content:"\\F101"}.vjs-icon-play-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-play-circle:before{content:"\\F102"}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,.vjs-icon-pause{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,.vjs-icon-pause:before{content:"\\F103"}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,.vjs-icon-volume-mute{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,.vjs-icon-volume-mute:before{content:"\\F104"}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,.vjs-icon-volume-low{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,.vjs-icon-volume-low:before{content:"\\F105"}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,.vjs-icon-volume-mid{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,.vjs-icon-volume-mid:before{content:"\\F106"}.video-js .vjs-mute-control .vjs-icon-placeholder,.vjs-icon-volume-high{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control .vjs-icon-placeholder:before,.vjs-icon-volume-high:before{content:"\\F107"}.video-js .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-enter:before{content:"\\F108"}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-exit:before{content:"\\F109"}.vjs-icon-square{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-square:before{content:"\\F10A"}.vjs-icon-spinner{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-spinner:before{content:"\\F10B"}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subtitles-button .vjs-icon-placeholder,.vjs-icon-subtitles{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,.vjs-icon-subtitles:before{content:"\\F10C"}.video-js .vjs-captions-button .vjs-icon-placeholder,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-captions{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-captions-button .vjs-icon-placeholder:before,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-captions:before{content:"\\F10D"}.video-js .vjs-chapters-button .vjs-icon-placeholder,.vjs-icon-chapters{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-chapters-button .vjs-icon-placeholder:before,.vjs-icon-chapters:before{content:"\\F10E"}.vjs-icon-share{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-share:before{content:"\\F10F"}.vjs-icon-cog{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-cog:before{content:"\\F110"}.video-js .vjs-play-progress,.video-js .vjs-volume-level,.vjs-icon-circle,.vjs-seek-to-live-control .vjs-icon-placeholder{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-progress:before,.video-js .vjs-volume-level:before,.vjs-icon-circle:before,.vjs-seek-to-live-control .vjs-icon-placeholder:before{content:"\\F111"}.vjs-icon-circle-outline{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-outline:before{content:"\\F112"}.vjs-icon-circle-inner-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-inner-circle:before{content:"\\F113"}.vjs-icon-hd{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-hd:before{content:"\\F114"}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,.vjs-icon-cancel{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,.vjs-icon-cancel:before{content:"\\F115"}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,.vjs-icon-replay{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,.vjs-icon-replay:before{content:"\\F116"}.vjs-icon-facebook{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-facebook:before{content:"\\F117"}.vjs-icon-gplus{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-gplus:before{content:"\\F118"}.vjs-icon-linkedin{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-linkedin:before{content:"\\F119"}.vjs-icon-twitter{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-twitter:before{content:"\\F11A"}.vjs-icon-tumblr{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-tumblr:before{content:"\\F11B"}.vjs-icon-pinterest{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-pinterest:before{content:"\\F11C"}.video-js .vjs-descriptions-button .vjs-icon-placeholder,.vjs-icon-audio-description{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,.vjs-icon-audio-description:before{content:"\\F11D"}.video-js .vjs-audio-button .vjs-icon-placeholder,.vjs-icon-audio{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-audio-button .vjs-icon-placeholder:before,.vjs-icon-audio:before{content:"\\F11E"}.vjs-icon-next-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-next-item:before{content:"\\F11F"}.vjs-icon-previous-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-previous-item:before{content:"\\F120"}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-enter:before{content:"\\F121"}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-exit:before{content:"\\F122"}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;background-color:#000;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;word-break:normal}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js[tabindex="-1"]{outline:none}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js.vjs-1-1,.video-js.vjs-4-3,.video-js.vjs-9-16,.video-js.vjs-16-9,.video-js.vjs-fluid{width:100%;max-width:100%}.video-js.vjs-1-1:not(.vjs-audio-only-mode),.video-js.vjs-4-3:not(.vjs-audio-only-mode),.video-js.vjs-9-16:not(.vjs-audio-only-mode),.video-js.vjs-16-9:not(.vjs-audio-only-mode),.video-js.vjs-fluid:not(.vjs-audio-only-mode){height:0}.video-js.vjs-16-9:not(.vjs-audio-only-mode){padding-top:56.25%}.video-js.vjs-4-3:not(.vjs-audio-only-mode){padding-top:75%}.video-js.vjs-9-16:not(.vjs-audio-only-mode){padding-top:177.7777777778%}.video-js.vjs-1-1:not(.vjs-audio-only-mode){padding-top:100%}.video-js.vjs-fill:not(.vjs-audio-only-mode),.video-js .vjs-tech{width:100%;height:100%}.video-js .vjs-tech{position:absolute;top:0;left:0}.video-js.vjs-audio-only-mode .vjs-tech{display:none}body.vjs-full-window{padding:0;margin:0;height:100%}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen:not(.vjs-ios-native-fs){width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1!important;visibility:visible!important}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.video-js .vjs-big-play-button{font-size:3em;line-height:1.5em;height:1.63332em;width:3em;display:block;position:absolute;top:10px;left:10px;padding:0;cursor:pointer;opacity:1;border:.06666em solid #fff;background-color:#2b333f;background-color:rgba(43,51,63,.7);border-radius:.3em;transition:all .4s}.vjs-big-play-centered .vjs-big-play-button{top:50%;left:50%;margin-top:-.81666em;margin-left:-1.5em}.video-js .vjs-big-play-button:focus,.video-js:hover .vjs-big-play-button{border-color:#fff;background-color:#73859f;background-color:rgba(115,133,159,.5);transition:all 0s}.vjs-controls-disabled .vjs-big-play-button,.vjs-error .vjs-big-play-button,.vjs-has-started .vjs-big-play-button,.vjs-using-native-controls .vjs-big-play-button{display:none}.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button{display:block}.video-js button{background:none;border:none;color:inherit;display:inline-block;font-size:inherit;line-height:inherit;text-transform:none;text-decoration:none;transition:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vjs-control .vjs-button{width:100%;height:100%}.video-js .vjs-control.vjs-close-button{cursor:pointer;height:3em;position:absolute;right:0;top:.5em;z-index:2}.video-js .vjs-modal-dialog{background:rgba(0,0,0,.8);background:linear-gradient(180deg,rgba(0,0,0,.8),hsla(0,0%,100%,0));overflow:auto}.video-js .vjs-modal-dialog>*{box-sizing:border-box}.vjs-modal-dialog .vjs-modal-dialog-content{font-size:1.2em;line-height:1.5;padding:20px 24px;z-index:1}.vjs-menu-button{cursor:pointer}.vjs-menu-button.vjs-disabled{cursor:default}.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu{display:none}.vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;font-family:Arial,Helvetica,sans-serif;overflow:auto}.vjs-menu .vjs-menu-content>*{box-sizing:border-box}.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu{display:none}.vjs-menu li{list-style:none;margin:0;padding:.2em 0;line-height:1.4em;font-size:1.2em;text-align:center;text-transform:lowercase}.js-focus-visible .vjs-menu li.vjs-menu-item:hover,.vjs-menu li.vjs-menu-item:focus,.vjs-menu li.vjs-menu-item:hover{background-color:#73859f;background-color:rgba(115,133,159,.5)}.js-focus-visible .vjs-menu li.vjs-selected:hover,.vjs-menu li.vjs-selected,.vjs-menu li.vjs-selected:focus,.vjs-menu li.vjs-selected:hover{background-color:#fff;color:#2b333f}.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible),.video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible){background:none}.vjs-menu li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 .3em;font-weight:700;cursor:default}.vjs-menu-button-popup .vjs-menu{display:none;position:absolute;bottom:0;width:10em;left:-3em;height:0;margin-bottom:1.5em;border-top-color:rgba(43,51,63,.7)}.vjs-menu-button-popup .vjs-menu .vjs-menu-content{background-color:#2b333f;background-color:rgba(43,51,63,.7);position:absolute;width:100%;bottom:1.5em;max-height:15em}.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:5em}.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:10em}.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:14em}.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:25em}.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu{display:block}.video-js .vjs-menu-button-inline{transition:all .4s;overflow:hidden}.video-js .vjs-menu-button-inline:before{width:2.222222222em}.video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline{width:12em}.vjs-menu-button-inline .vjs-menu{opacity:0;height:100%;width:auto;position:absolute;left:4em;top:0;padding:0;margin:0;transition:all .4s}.vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-menu-button-inline:focus .vjs-menu,.vjs-menu-button-inline:hover .vjs-menu{display:block;opacity:1}.vjs-no-flex .vjs-menu-button-inline .vjs-menu{display:block;opacity:1;position:relative;width:auto}.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu{width:auto}.vjs-menu-button-inline .vjs-menu-content{width:auto;height:100%;margin:0;overflow:hidden}.video-js .vjs-control-bar{display:none;width:100%;position:absolute;bottom:0;left:0;right:0;height:3em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.vjs-audio-only-mode .vjs-control-bar,.vjs-has-started .vjs-control-bar{display:flex;visibility:visible;opacity:1;transition:visibility .1s,opacity .1s}.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{visibility:visible;opacity:0;pointer-events:none;transition:visibility 1s,opacity 1s}.vjs-controls-disabled .vjs-control-bar,.vjs-error .vjs-control-bar,.vjs-using-native-controls .vjs-control-bar{display:none!important}.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{opacity:1;visibility:visible;pointer-events:auto}.vjs-has-started.vjs-no-flex .vjs-control-bar{display:table}.video-js .vjs-control{position:relative;text-align:center;margin:0;padding:0;height:100%;width:4em;flex:none}.video-js .vjs-control.vjs-visible-text{width:auto;padding-left:1em;padding-right:1em}.vjs-button>.vjs-icon-placeholder:before{font-size:1.8em;line-height:1.67}.vjs-button>.vjs-icon-placeholder{display:block}.video-js .vjs-control:focus,.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before{text-shadow:0 0 1em #fff}.video-js :not(.vjs-visible-text)>.vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-no-flex .vjs-control{display:table-cell;vertical-align:middle}.video-js .vjs-custom-control-spacer{display:none}.video-js .vjs-progress-control{cursor:pointer;flex:auto;display:flex;align-items:center;min-width:4em;touch-action:none}.video-js .vjs-progress-control.disabled{cursor:default}.vjs-live .vjs-progress-control{display:none}.vjs-liveui .vjs-progress-control{display:flex;align-items:center}.vjs-no-flex .vjs-progress-control{width:auto}.video-js .vjs-progress-holder{flex:auto;transition:all .2s;height:.3em}.video-js .vjs-progress-control .vjs-progress-holder{margin:0 10px}.video-js .vjs-progress-control:hover .vjs-progress-holder{font-size:1.6666666667em}.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled{font-size:1em}.video-js .vjs-progress-holder .vjs-load-progress,.video-js .vjs-progress-holder .vjs-load-progress div,.video-js .vjs-progress-holder .vjs-play-progress{position:absolute;display:block;height:100%;margin:0;padding:0;width:0}.video-js .vjs-play-progress{background-color:#fff}.video-js .vjs-play-progress:before{font-size:.9em;position:absolute;right:-.5em;top:-.3333333333em;z-index:1}.video-js .vjs-load-progress{background:rgba(115,133,159,.5)}.video-js .vjs-load-progress div{background:rgba(115,133,159,.75)}.video-js .vjs-time-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-progress-holder:focus .vjs-time-tooltip{display:none}.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,.video-js .vjs-progress-control:hover .vjs-time-tooltip{display:block;font-size:.6em;visibility:visible}.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip{font-size:1em}.video-js .vjs-progress-control .vjs-mouse-display{display:none;position:absolute;width:1px;height:100%;background-color:#000;z-index:1}.vjs-no-flex .vjs-progress-control .vjs-mouse-display{z-index:0}.video-js .vjs-progress-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-time-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.video-js .vjs-slider{position:relative;cursor:pointer;padding:0;margin:0 .45em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#73859f;background-color:rgba(115,133,159,.5)}.video-js .vjs-slider.disabled{cursor:default}.video-js .vjs-slider:focus{text-shadow:0 0 1em #fff;box-shadow:0 0 1em #fff}.video-js .vjs-mute-control{cursor:pointer;flex:none}.video-js .vjs-volume-control{cursor:pointer;margin-right:1em;display:flex}.video-js .vjs-volume-control.vjs-volume-horizontal{width:5em}.video-js .vjs-volume-panel .vjs-volume-control{visibility:visible;opacity:0;width:1px;height:1px;margin-left:-1px}.video-js .vjs-volume-panel{transition:width 1s}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,.video-js .vjs-volume-panel .vjs-volume-control:active,.video-js .vjs-volume-panel:active .vjs-volume-control,.video-js .vjs-volume-panel:focus .vjs-volume-control{visibility:visible;opacity:1;position:relative;transition:visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;margin-right:0}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical{left:-3.5em;transition:left 0s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active{width:10em;transition:width .1s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only{width:4em}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{height:8em;width:3em;left:-3000em;transition:visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{transition:visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s}.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;visibility:visible;opacity:1;position:relative;transition:none}.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{position:absolute;bottom:3em;left:.5em}.video-js .vjs-volume-panel{display:flex}.video-js .vjs-volume-bar{margin:1.35em .45em}.vjs-volume-bar.vjs-slider-horizontal{width:5em;height:.3em}.vjs-volume-bar.vjs-slider-vertical{width:.3em;height:5em;margin:1.35em auto}.video-js .vjs-volume-level{position:absolute;bottom:0;left:0;background-color:#fff}.video-js .vjs-volume-level:before{position:absolute;font-size:.9em;z-index:1}.vjs-slider-vertical .vjs-volume-level{width:.3em}.vjs-slider-vertical .vjs-volume-level:before{top:-.5em;left:-.3em;z-index:1}.vjs-slider-horizontal .vjs-volume-level{height:.3em}.vjs-slider-horizontal .vjs-volume-level:before{top:-.3em;right:-.5em}.video-js .vjs-volume-panel.vjs-volume-panel-vertical{width:4em}.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level{height:100%}.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level{width:100%}.video-js .vjs-volume-vertical{width:3em;height:8em;bottom:8em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.video-js .vjs-volume-horizontal .vjs-menu{left:-2em}.video-js .vjs-volume-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-control:hover .vjs-volume-tooltip{display:block;font-size:1em;visibility:visible}.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip{left:1em;top:-12px}.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip{font-size:1em}.video-js .vjs-volume-control .vjs-mouse-display{display:none;position:absolute;width:100%;height:1px;background-color:#000;z-index:1}.video-js .vjs-volume-horizontal .vjs-mouse-display{width:1px;height:100%}.vjs-no-flex .vjs-volume-control .vjs-mouse-display{z-index:0}.video-js .vjs-volume-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-volume-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.vjs-poster{display:inline-block;vertical-align:middle;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;padding:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-has-started .vjs-poster,.vjs-using-native-controls .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster,.vjs-has-started.vjs-audio-poster-mode .vjs-poster{display:block}.video-js .vjs-live-control{display:flex;align-items:flex-start;flex:auto;font-size:1em;line-height:3em}.vjs-no-flex .vjs-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-liveui .vjs-live-control,.video-js:not(.vjs-live) .vjs-live-control{display:none}.video-js .vjs-seek-to-live-control{align-items:center;cursor:pointer;flex:none;display:inline-flex;height:100%;padding-left:.5em;padding-right:.5em;font-size:1em;line-height:3em;width:auto;min-width:4em}.vjs-no-flex .vjs-seek-to-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,.video-js:not(.vjs-live) .vjs-seek-to-live-control{display:none}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge{cursor:auto}.vjs-seek-to-live-control .vjs-icon-placeholder{margin-right:.5em;color:#888}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder{color:red}.video-js .vjs-time-control{flex:none;font-size:1em;line-height:3em;min-width:2em;width:auto;padding-left:1em;padding-right:1em}.video-js .vjs-current-time,.video-js .vjs-duration,.vjs-live .vjs-time-control,.vjs-no-flex .vjs-current-time,.vjs-no-flex .vjs-duration{display:none}.vjs-time-divider{display:none;line-height:3em}.vjs-live .vjs-time-divider{display:none}.video-js .vjs-play-control{cursor:pointer}.video-js .vjs-play-control .vjs-icon-placeholder{flex:none}.vjs-text-track-display{position:absolute;bottom:3em;left:0;right:0;top:0;pointer-events:none}.video-js.vjs-controls-disabled .vjs-text-track-display,.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display{bottom:1em}.video-js .vjs-text-track{font-size:1.4em;text-align:center;margin-bottom:.1em}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}video::-webkit-media-text-track-display{transform:translateY(-3em)}.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display{transform:translateY(-1.5em)}.video-js .vjs-picture-in-picture-control{cursor:pointer;flex:none}.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control{display:none}.video-js .vjs-fullscreen-control{cursor:pointer;flex:none}.video-js.vjs-audio-only-mode .vjs-fullscreen-control{display:none}.vjs-playback-rate .vjs-playback-rate-value,.vjs-playback-rate>.vjs-menu-button{position:absolute;top:0;left:0;width:100%;height:100%}.vjs-playback-rate .vjs-playback-rate-value{pointer-events:none;font-size:1.5em;line-height:2;text-align:center}.vjs-playback-rate .vjs-menu{width:4em;left:0}.vjs-error .vjs-error-display .vjs-modal-dialog-content{font-size:1.4em;text-align:center}.vjs-error .vjs-error-display:before{color:#fff;content:"X";font-family:Arial,Helvetica,sans-serif;font-size:4em;left:0;line-height:1;margin-top:-.5em;position:absolute;text-shadow:.05em .05em .1em #000;text-align:center;top:50%;vertical-align:middle;width:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.7);box-sizing:border-box;background-clip:padding-box;width:50px;height:50px;border-radius:25px;visibility:hidden}.vjs-seeking .vjs-loading-spinner,.vjs-waiting .vjs-loading-spinner{display:block;-webkit-animation:vjs-spinner-show 0s linear .3s forwards;animation:vjs-spinner-show 0s linear .3s forwards}.vjs-loading-spinner:after,.vjs-loading-spinner:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit;border-color:transparent;border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:before{-webkit-animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite;animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite}.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:before{border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:after{border-top-color:#fff;-webkit-animation-delay:.44s;animation-delay:.44s}@keyframes vjs-spinner-show{to{visibility:visible}}@-webkit-keyframes vjs-spinner-show{to{visibility:visible}}@keyframes vjs-spinner-spin{to{transform:rotate(1turn)}}@-webkit-keyframes vjs-spinner-spin{to{-webkit-transform:rotate(1turn)}}@keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}@-webkit-keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}.video-js.vjs-audio-only-mode .vjs-captions-button{display:none}.vjs-chapters-button .vjs-menu ul{width:24em}.video-js.vjs-audio-only-mode .vjs-descriptions-button{display:none}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:"\\F10D";font-size:1.5em;line-height:inherit}.video-js.vjs-audio-only-mode .vjs-subs-caps-button{display:none}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:" \\F11D";font-size:1.5em;line-height:inherit}.video-js.vjs-layout-small .vjs-current-time,.video-js.vjs-layout-small .vjs-duration,.video-js.vjs-layout-small .vjs-playback-rate,.video-js.vjs-layout-small .vjs-remaining-time,.video-js.vjs-layout-small .vjs-time-divider,.video-js.vjs-layout-small .vjs-volume-control,.video-js.vjs-layout-tiny .vjs-current-time,.video-js.vjs-layout-tiny .vjs-duration,.video-js.vjs-layout-tiny .vjs-playback-rate,.video-js.vjs-layout-tiny .vjs-remaining-time,.video-js.vjs-layout-tiny .vjs-time-divider,.video-js.vjs-layout-tiny .vjs-volume-control,.video-js.vjs-layout-x-small .vjs-current-time,.video-js.vjs-layout-x-small .vjs-duration,.video-js.vjs-layout-x-small .vjs-playback-rate,.video-js.vjs-layout-x-small .vjs-remaining-time,.video-js.vjs-layout-x-small .vjs-time-divider,.video-js.vjs-layout-x-small .vjs-volume-control{display:none}.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:auto}.video-js.vjs-layout-tiny .vjs-progress-control,.video-js.vjs-layout-x-small .vjs-progress-control{display:none}.video-js.vjs-layout-x-small .vjs-custom-control-spacer{flex:auto;display:block}.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer{width:auto}.vjs-modal-dialog.vjs-text-track-settings{background-color:#2b333f;background-color:rgba(43,51,63,.75);color:#fff;height:70%}.vjs-text-track-settings .vjs-modal-dialog-content{display:table}.vjs-text-track-settings .vjs-track-settings-colors,.vjs-text-track-settings .vjs-track-settings-controls,.vjs-text-track-settings .vjs-track-settings-font{display:table-cell}.vjs-text-track-settings .vjs-track-settings-controls{text-align:right;vertical-align:bottom}@supports (display:grid){.vjs-text-track-settings .vjs-modal-dialog-content{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr;padding:20px 24px 0}.vjs-track-settings-controls .vjs-default-button{margin-bottom:20px}.vjs-text-track-settings .vjs-track-settings-controls{grid-column:1/-1}.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content{grid-template-columns:1fr}}.vjs-track-setting>select{margin-right:1em;margin-bottom:.5em}.vjs-text-track-settings fieldset{margin:5px;padding:3px;border:none}.vjs-text-track-settings fieldset span{display:inline-block}.vjs-text-track-settings fieldset span>select{max-width:7.3em}.vjs-text-track-settings legend{color:#fff;margin:0 0 5px}.vjs-text-track-settings .vjs-label{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);display:block;margin:0 0 5px;padding:0;border:0;height:1px;width:1px;overflow:hidden}.vjs-track-settings-controls button:active,.vjs-track-settings-controls button:focus{outline-style:solid;outline-width:medium;background-image:linear-gradient(0deg,#fff 88%,#73859f)}.vjs-track-settings-controls button:hover{color:rgba(43,51,63,.75)}.vjs-track-settings-controls button{background-color:#fff;background-image:linear-gradient(-180deg,#fff 88%,#73859f);color:#2b333f;cursor:pointer;border-radius:2px}.vjs-track-settings-controls .vjs-default-button{margin-right:1em}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:-1000}.js-focus-visible .video-js :focus:not(.focus-visible),.video-js :focus:not(:focus-visible){outline:none}',""])},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"text-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.attributeJson.label?n("div",[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con editor-richTextWrap",on:{click:t.pageClick}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["text-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},domProps:{innerHTML:t._s(t.attributeJson.label)}})])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(137);e.a=i.a},function(t,e,n){"use strict";function i(t){n(138)}var r=n(33),a=n(169),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-02af5f7c",null);e.a=l.exports},function(t,e,n){var i=n(139);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("4a803d08",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".image-list[data-v-02af5f7c]{position:absolute;border:none;overflow:hidden}.image-list .entrance-con[data-v-02af5f7c]{position:relative;width:100%;height:100%}.image-list .swiper-container[data-v-02af5f7c]{height:100%!important}.image-list .swiper-container .swiper-slide[data-v-02af5f7c]{transform:translateZ(0);position:relative;overflow:hidden}.image-list .swiper-container .swiper-slide .slide-con[data-v-02af5f7c]{position:relative}.image-list .swiper-container .swiper-slide .slide-con img[data-v-02af5f7c]{object-fit:contain;width:100%;height:100%}.image-list .swiper-container .swiper-button-prev[data-v-02af5f7c]{background-image:none;left:20px}.image-list .swiper-container .swiper-button-prev[data-v-02af5f7c]:after{display:none}.image-list .swiper-container .swiper-button-prev .cms2iconfont[data-v-02af5f7c]{font-size:28px}.image-list .swiper-container .swiper-button-next[data-v-02af5f7c]{background-image:none;right:20px}.image-list .swiper-container .swiper-button-next[data-v-02af5f7c]:after{display:none}.image-list .swiper-container .swiper-button-next .cms2iconfont[data-v-02af5f7c]{font-size:28px}.image-list .swiper-container .swiper-scrollbar[data-v-02af5f7c]{height:3px;width:70%;left:50%;transform:translateX(-50%)}.image-list .swiper-container .swiper-scrollbar ::v-deep .swiper-scrollbar-drag[data-v-02af5f7c]{background-color:#1890ff}.image-list .image-warp[data-v-02af5f7c]{width:100%;height:100%;overflow:hidden;position:relative;display:flex}.image-list .image-warp.image-type3[data-v-02af5f7c]{overflow-x:scroll}.image-list .image-warp .image-item[data-v-02af5f7c]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:0;transition:transform .5s;flex-shrink:0;position:relative;overflow:hidden}.image-list .image-warp .image-item img[data-v-02af5f7c]{width:auto;height:auto;width:100%;height:100%}.image-list .image-warp .image-item .contain[data-v-02af5f7c]{object-fit:contain}.image-list .image-warp .image-item[data-v-02af5f7c]:first-child{padding-left:0!important}.image-list .image-warp .image-item[data-v-02af5f7c]:last-child{padding-right:0!important}.image-list .image-warp .hot-spot[data-v-02af5f7c]{position:absolute;width:100%;height:100%}.hover-con[data-v-02af5f7c]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-02af5f7c],.hover-image[data-v-02af5f7c]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(14)),s=n(5);n(44);e.a={name:"imgNav",mixins:[s.a],components:{hotspot:o.a},props:{},data:function(){return{swiper:""}},computed:{indicatorType:function(){return this.attributeJson.indicatorType},picStyle:function(){var t=this.attributeJson,e=this.ratio;return{animationDuration:this.animationInObj.duration+"s",padding:"0 "+t.paddingSpacing*e+"px",width:t.baseStyle.w*e+"px"}},picItemStyle:function(){var t=this.attributeJson,e=this.ratio,n=t.oneLineCount;return{width:(t.baseStyle.w*e-2*t.paddingSpacing*e)/n+"px",height:t.baseStyle.h*e+"px",padding:"0 "+t.itemSpacing*e+"px"}},list:function(){return this.attributeJson.list},isSwiper:function(){return 3==this.styleType&&2==this.indicatorType&&"pc"==this.mode||2==this.styleType&&2==this.indicatorType&&"mobile"==this.mode},hasConfig:function(){return this.attributeJson.list.some(function(t){return 0!=t.picList.length})},hasSwiperButton:function(){return 3==this.styleType&&2==this.indicatorType&&"pc"==this.mode},hasScrollBar:function(){return 2==this.styleType&&2==this.indicatorType&&"mobile"==this.mode}},watch:{isSwiper:{handler:function(t){t&&this.initSwiper()},immediate:!0},entranceShow:{handler:function(t){t&&this.isSwiper&&this.initSwiper()}}},methods:{initSwiper:function(){var t=this;this.hasConfig&&this.isSwiper&&this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null);var e=t.attributeJson;t.options={effect:"slide",autoplay:!1,slidesPerView:t.attributeJson.oneLineCount,spaceBetween:e.itemSpacing},t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId}),t.hasScrollBar&&(t.options.scrollbar={el:".swiper-scrollbar-"+t.sortId,draggable:!0},t.options.freeMode=!0),t.swiper=new r.a(".swiper-container-"+t.sortId,t.options),console.log("[32m%s[0m","初始化轮播图",t.swiper)})}}}},function(t,e,n){"use strict";function i(t){n(142)}var r=n(34),a=n(168),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-0bd614f2",null);e.a=l.exports},function(t,e,n){var i=n(143);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("f1d47758",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".pop-wrap .pop-item[data-v-0bd614f2],.pop-wrap[data-v-0bd614f2]{position:absolute}.pop-wrap .pop-item .product-hover[data-v-0bd614f2]{font-size:0;display:flex;align-items:center;position:relative;height:100%}.pop-wrap .pop-item .product-hover .product-image[data-v-0bd614f2]{font-size:0;padding-left:10px}",""])},function(t,e,n){"use strict";var i=n(35);e.a={name:"hotspot",props:{item:{type:Object,default:function(){}},width:{type:Number,default:0},height:{type:Number,default:0},ratio:{type:Number,default:1},envUrl:{type:String}},data:function(){return{proportion:1,hoverIndex:1,service:new i.a}},watch:{"item.width":{handler:function(t){this.proportion=t/750},deep:!0,immediate:!0},itemCodeList:{handler:function(t){this.getProductList(t)},immediate:!0,deep:!0}},computed:{itemCodeList:function(){return this.item.popList.filter(function(t){return 1==t.jumpLinkType&&1==t.product.imageType}).map(function(t){return t.productCode})}},methods:{pageClick:function(t){this.$emit("jumpLink",t)},getProductList:function(t){var e=this,n={itemCodeList:t,pageNum:1,pageSize:t.length},i={};this.service.getProductInfo(this.envUrl,n).then(function(t){t&&t.list&&(e.productList=t.list,t.list.forEach(function(t){i[t.code]=t.mainPicUrl}),e.productImage=i)})},mouseover:function(t){this.hoverIndex=t},mouseLeave:function(){this.hoverIndex=-1}}}},function(t,e,n){"use strict";function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function r(t){return function(){var e=t.apply(this,arguments);return new Promise(function(t,n){function i(r,a){try{var o=e[r](a),s=o.value}catch(t){return void n(t)}if(!o.done)return Promise.resolve(s).then(function(t){i("next",t)},function(t){i("throw",t)});t(s)}return i("next")})}}function a(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t){if(200===t.status){var e=t.data;return"0"===e.errorCode?e.data:t.data}}n.d(e,"a",function(){return h});var s=n(146),l=n.n(s),c=n(149),u=n.n(c),d=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),p={json:"application/json;",form:"application/x-www-form-urlencoded;",html:"text/html;",file:"multipart/form-data",excel:"msexcel",xml:"application/xml",javascript:"application/x-javascript;charset=utf-8"},f={lang:"Accept-Language",contentType:"Content-Type"};u.a.interceptors.response.use(o,function(t){return t.message,Promise.reject(t)});var h=function(){function t(){a(this,t)}return d(t,null,[{key:"call",value:function(){function t(t){return e.apply(this,arguments)}var e=r(l.a.mark(function t(e){var n,i,r,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=a.method,s=void 0===o?"get":o,c=a.headers,d=void 0===c?{}:c,p=a.body,f=void 0===p?null:p,h=a.responseType,m=void 0===h?null:h;return l.a.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return n=e,i={method:s,url:n,responseType:m||"json",headers:d},"get"===s?i.params=f:i.data=f,t.next=5,u()(i).catch(function(t){t.response?console.error(t.response.status,t.response.data):t.request?console.error(t.request):console.error("Error",t.message?t.message:"")});case 5:return r=t.sent,t.abrupt("return",r);case 7:case"end":return t.stop()}},t,this)}));return t}()},{key:"get",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=n.mask,r=void 0===i||i,a=n.external,o=void 0!==a&&a,s=n.headers,l=void 0===s?{}:s;return t.call(e,{headers:l,external:o,mask:r})}},{key:"postBody",value:function(e,n){var r=n.body,a=void 0===r?{}:r,o=n.module,s=void 0===o?"":o,l=n.method,c=void 0===l?"post":l,u=n.mask,d=void 0===u||u,h=n.postData,m=void 0===h||h,v=n.external,g=void 0!==v&&v,y=n.headers,b=void 0===y?{}:y,w=n.compat;return t.call(e,{module:s,method:c,headers:Object.assign(b,i({},f.contentType,p.json)),body:a,postData:m,external:g,mask:d,compat:w})}}]),t}()},function(t,e,n){t.exports=n(147)},function(t,e,n){var i=function(){return this}()||Function("return this")(),r=i.regeneratorRuntime&&Object.getOwnPropertyNames(i).indexOf("regeneratorRuntime")>=0,a=r&&i.regeneratorRuntime;if(i.regeneratorRuntime=void 0,t.exports=n(148),r)i.regeneratorRuntime=a;else try{delete i.regeneratorRuntime}catch(t){i.regeneratorRuntime=void 0}},function(t,e){!function(e){"use strict";function n(t,e,n,i){var a=e&&e.prototype instanceof r?e:r,o=Object.create(a.prototype),s=new f(i||[]);return o._invoke=c(t,n,s),o}function i(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}function r(){}function a(){}function o(){}function s(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function l(t){function e(n,r,a,o){var s=i(t[n],t,r);if("throw"!==s.type){var l=s.arg,c=l.value;return c&&"object"==typeof c&&y.call(c,"__await")?Promise.resolve(c.__await).then(function(t){e("next",t,a,o)},function(t){e("throw",t,a,o)}):Promise.resolve(c).then(function(t){l.value=t,a(l)},o)}o(s.arg)}function n(t,n){function i(){return new Promise(function(i,r){e(t,n,i,r)})}return r=r?r.then(i,i):i()}var r;this._invoke=n}function c(t,e,n){var r=S;return function(a,o){if(r===C)throw new Error("Generator is already running");if(r===A){if("throw"===a)throw o;return m()}for(n.method=a,n.arg=o;;){var s=n.delegate;if(s){var l=u(s,n);if(l){if(l===I)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===S)throw r=A,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=C;var c=i(t,e,n);if("normal"===c.type){if(r=n.done?A:E,c.arg===I)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=A,n.method="throw",n.arg=c.arg)}}}function u(t,e){var n=t.iterator[e.method];if(n===v){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=v,u(t,e),"throw"===e.method))return I;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return I}var r=i(n,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,I;var a=r.arg;return a?a.done?(e[t.resultName]=a.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=v),e.delegate=null,I):a:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,I)}function d(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function p(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function f(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(d,this),this.reset(!0)}function h(t){if(t){var e=t[w];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function e(){for(;++n<t.length;)if(y.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=v,e.done=!0,e};return i.next=i}}return{next:m}}function m(){return{value:v,done:!0}}var v,g=Object.prototype,y=g.hasOwnProperty,b="function"==typeof Symbol?Symbol:{},w=b.iterator||"@@iterator",_=b.asyncIterator||"@@asyncIterator",T=b.toStringTag||"@@toStringTag",x="object"==typeof t,k=e.regeneratorRuntime;if(k)return void(x&&(t.exports=k));k=e.regeneratorRuntime=x?t.exports:{},k.wrap=n;var S="suspendedStart",E="suspendedYield",C="executing",A="completed",I={},O={};O[w]=function(){return this};var j=Object.getPrototypeOf,P=j&&j(j(h([])));P&&P!==g&&y.call(P,w)&&(O=P);var L=o.prototype=r.prototype=Object.create(O);a.prototype=L.constructor=o,o.constructor=a,o[T]=a.displayName="GeneratorFunction",k.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===a||"GeneratorFunction"===(e.displayName||e.name))},k.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,o):(t.__proto__=o,T in t||(t[T]="GeneratorFunction")),t.prototype=Object.create(L),t},k.awrap=function(t){return{__await:t}},s(l.prototype),l.prototype[_]=function(){return this},k.AsyncIterator=l,k.async=function(t,e,i,r){var a=new l(n(t,e,i,r));return k.isGeneratorFunction(e)?a:a.next().then(function(t){return t.done?t.value:a.next()})},s(L),L[T]="Generator",L[w]=function(){return this},L.toString=function(){return"[object Generator]"},k.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},k.values=h,f.prototype={constructor:f,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=v,this.done=!1,this.delegate=null,this.method="next",this.arg=v,this.tryEntries.forEach(p),!t)for(var e in this)"t"===e.charAt(0)&&y.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=v)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){function e(e,i){return a.type="throw",a.arg=t,n.next=e,i&&(n.method="next",n.arg=v),!!i}if(this.done)throw t;for(var n=this,i=this.tryEntries.length-1;i>=0;--i){var r=this.tryEntries[i],a=r.completion;if("root"===r.tryLoc)return e("end");if(r.tryLoc<=this.prev){var o=y.call(r,"catchLoc"),s=y.call(r,"finallyLoc");if(o&&s){if(this.prev<r.catchLoc)return e(r.catchLoc,!0);if(this.prev<r.finallyLoc)return e(r.finallyLoc)}else if(o){if(this.prev<r.catchLoc)return e(r.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<r.finallyLoc)return e(r.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&y.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var r=i;break}}r&&("break"===t||"continue"===t)&&r.tryLoc<=e&&e<=r.finallyLoc&&(r=null);var a=r?r.completion:{};return a.type=t,a.arg=e,r?(this.method="next",this.next=r.finallyLoc,I):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),I},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),p(n),I}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;p(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:h(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=v),I}}}(function(){return this}()||Function("return this")())},function(t,e,n){t.exports=n(150)},function(t,e,n){"use strict";function i(t){var e=new o(t),n=a(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var r=n(3),a=n(36),o=n(151),s=n(42),l=n(15),c=i(l);c.Axios=o,c.create=function(t){return i(s(c.defaults,t))},c.Cancel=n(43),c.CancelToken=n(165),c.isCancel=n(41),c.all=function(t){return Promise.all(t)},c.spread=n(166),c.isAxiosError=n(167),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function i(t){this.defaults=t,this.interceptors={request:new o,response:new o}}var r=n(3),a=n(37),o=n(152),s=n(153),l=n(42),c=n(163),u=c.validators;i.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{},t.url=arguments[0]):t=t||{},t=l(this.defaults,t),t.method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&c.assertOptions(e,{silentJSONParsing:u.transitional(u.boolean,"1.0.0"),forcedJSONParsing:u.transitional(u.boolean,"1.0.0"),clarifyTimeoutError:u.transitional(u.boolean,"1.0.0")},!1);var n=[],i=!0;this.interceptors.request.forEach(function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(i=i&&e.synchronous,n.unshift(e.fulfilled,e.rejected))});var r=[];this.interceptors.response.forEach(function(t){r.push(t.fulfilled,t.rejected)});var a;if(!i){var o=[s,void 0];for(Array.prototype.unshift.apply(o,n),o=o.concat(r),a=Promise.resolve(t);o.length;)a=a.then(o.shift(),o.shift());return a}for(var d=t;n.length;){var p=n.shift(),f=n.shift();try{d=p(d)}catch(t){f(t);break}}try{a=s(d)}catch(t){return Promise.reject(t)}for(;r.length;)a=a.then(r.shift(),r.shift());return a},i.prototype.getUri=function(t){return t=l(this.defaults,t),a(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],function(t){i.prototype[t]=function(e,n){return this.request(l(n||{},{method:t,url:e,data:(n||{}).data}))}}),r.forEach(["post","put","patch"],function(t){i.prototype[t]=function(e,n,i){return this.request(l(i||{},{method:t,url:e,data:n}))}}),t.exports=i},function(t,e,n){"use strict";function i(){this.handlers=[]}var r=n(3);i.prototype.use=function(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=i},function(t,e,n){"use strict";function i(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var r=n(3),a=n(154),o=n(41),s=n(15);t.exports=function(t){return i(t),t.headers=t.headers||{},t.data=a.call(t,t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return i(t),e.data=a.call(t,e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(i(t),e&&e.response&&(e.response.data=a.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var i=n(3),r=n(15);t.exports=function(t,e,n){var a=this||r;return i.forEach(n,function(n){t=n.call(a,t,e)}),t}},function(t,e,n){"use strict";var i=n(3);t.exports=function(t,e){i.forEach(t,function(n,i){i!==e&&i.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[i])})}},function(t,e,n){"use strict";var i=n(40);t.exports=function(t,e,n){var r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(i("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var i=n(3);t.exports=i.isStandardBrowserEnv()?function(){return{write:function(t,e,n,r,a,o){var s=[];s.push(t+"="+encodeURIComponent(e)),i.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),i.isString(r)&&s.push("path="+r),i.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},function(t,e,n){"use strict";var i=n(159),r=n(160);t.exports=function(t,e){return t&&!i(e)?r(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var i=n(3),r=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,a,o={};return t?(i.forEach(t.split("\n"),function(t){if(a=t.indexOf(":"),e=i.trim(t.substr(0,a)).toLowerCase(),n=i.trim(t.substr(a+1)),e){if(o[e]&&r.indexOf(e)>=0)return;o[e]="set-cookie"===e?(o[e]?o[e]:[]).concat([n]):o[e]?o[e]+", "+n:n}}),o):o}},function(t,e,n){"use strict";var i=n(3);t.exports=i.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(r.setAttribute("href",e),e=r.href),r.setAttribute("href",e),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");return e=t(window.location.href),function(n){var r=i.isString(n)?t(n):n;return r.protocol===e.protocol&&r.host===e.host}}():function(){return function(){return!0}}()},function(t,e,n){"use strict";function i(t,e){for(var n=e?e.split("."):l,i=t.split("."),r=0;r<3;r++){if(n[r]>i[r])return!0;if(n[r]<i[r])return!1}return!1}function r(t,e,n){if("object"!=typeof t)throw new TypeError("options must be an object");for(var i=Object.keys(t),r=i.length;r-- >0;){var a=i[r],o=e[a];if(o){var s=t[a],l=void 0===s||o(s,a,t);if(!0!==l)throw new TypeError("option "+a+" must be "+l)}else if(!0!==n)throw Error("Unknown option "+a)}}var a=n(164),o={};["object","boolean","number","function","string","symbol"].forEach(function(t,e){o[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}});var s={},l=a.version.split(".");o.transitional=function(t,e,n){function r(t,e){return"[Axios v"+a.version+"] Transitional option '"+t+"'"+e+(n?". "+n:"")}var o=e&&i(e);return function(n,i,a){if(!1===t)throw new Error(r(i," has been removed in "+e));return o&&!s[i]&&(s[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,a)}},t.exports={isOlderVersion:i,assertOptions:r,validators:o}},function(t,e){t.exports={_args:[["axios@0.21.4","D:\\后台\\装修2\\front-eshop-cms2.0"]],_from:"axios@0.21.4",_id:"axios@0.21.4",_inBundle:!1,_integrity:"sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",_location:"/axios",_phantomChildren:{},_requested:{type:"version",registry:!0,raw:"axios@0.21.4",name:"axios",escapedName:"axios",rawSpec:"0.21.4",saveSpec:null,fetchSpec:"0.21.4"},_requiredBy:["/"],_resolved:"https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz",_spec:"0.21.4",_where:"D:\\后台\\装修2\\front-eshop-cms2.0",author:{name:"Matt Zabriskie"},browser:{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},bugs:{url:"https://github.com/axios/axios/issues"},bundlesize:[{path:"./dist/axios.min.js",threshold:"5kB"}],dependencies:{"follow-redirects":"^1.14.0"},description:"Promise based HTTP client for the browser and node.js",devDependencies:{coveralls:"^3.0.0","es6-promise":"^4.2.4",grunt:"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1",karma:"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2",minimist:"^1.2.0",mocha:"^8.2.1",sinon:"^4.5.0","terser-webpack-plugin":"^4.2.3",typescript:"^4.0.5","url-search-params":"^0.10.0",webpack:"^4.44.2","webpack-dev-server":"^3.11.0"},homepage:"https://axios-http.com",jsdelivr:"dist/axios.min.js",keywords:["xhr","http","ajax","promise","node"],license:"MIT",main:"index.js",name:"axios",repository:{type:"git",url:"git+https://github.com/axios/axios.git"},scripts:{build:"NODE_ENV=production grunt build",coveralls:"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",examples:"node ./examples/server.js",fix:"eslint --fix lib/**/*.js",postversion:"git push && git push --tags",preversion:"npm test",start:"node ./sandbox/server.js",test:"grunt test",version:"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json"},typings:"./index.d.ts",unpkg:"dist/axios.min.js",version:"0.21.4"}},function(t,e,n){"use strict";function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new r(t),e(n.reason))})}var r=n(43);i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i(function(e){t=e}),cancel:t}},t.exports=i},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"pop-wrap",style:{left:t.item.left,top:t.item.top,width:t.item.realWidth*t.ratio+"px"||"100%",height:t.item.realHeight*t.ratio+"px"||"100%"}},t._l(t.item.popList,function(e,i){return n("div",{class:"pop-item",style:{width:e.width/750*100+"%",height:e.height/(t.item.height/t.proportion)*100+"%",left:e.left/750*100+"%",top:e.top/(t.item.height/t.proportion)*100+"%"},on:{click:function(n){return t.pageClick(e)}}},[e.product.openHot?n("div",{staticClass:"product-hover",on:{mouseover:function(e){return t.mouseover(i)},mouseleave:t.mouseLeave}},[0!=e.product.initImage.length?n("div",{staticStyle:{"{fontSize":"0}"}},[n("img",{attrs:{src:t.hoverIndex==i?e.product.hoverImage[0].resourcePath:e.product.initImage[0].resourcePath,alt:""}})]):t._e(),t._v(" "),t.hoverIndex==i?n("div",{staticClass:"product-image"},[n("img",{attrs:{src:1==e.product.imageType?t.productImage[e.productCode]:e.product.productImage[0].resourcePath,alt:""}})]):t._e()]):t._e()])}),0)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{key:t.attributeJson.sort,staticClass:"image-list",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.hasConfig?n("div",[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["image-warp",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"}},[t.isSwiper?n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],style:[t.picStyle,3===t.animationHoverObj.type&&t.hoverStyleShow?t.hoverStyle:""]},[n("div",{class:["swiper-container swiper-container-"+t.sortId]},[n("div",{staticClass:"swiper-wrapper",style:{height:(t.baseStyle.h-(t.hasScrollBar?30:0))*t.ratio+"px!important"}},t._l(t.attributeJson.list,function(e){return n("div",{key:e.id,staticClass:"swiper-slide",style:{width:t.baseStyle.w/4*t.ratio+"px"}},[n("div",{staticClass:"slide-con",style:{height:(t.baseStyle.h-(t.hasScrollBar?30:0))*t.ratio+"px"}},[n("img",{attrs:{src:e.picList[0]&&e.picList[0].resourcePath,alt:""}}),t._v(" "),0!=e.picList.length&&0!=e.popList.length?[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))]:t._e()],2)])}),0),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-prev swiper-button-prev-"+t.sortId},[t._t("swiper-button-prev",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft"})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-next swiper-button-next-"+t.sortId},[t._t("swiper-button-next",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright"})]):t._e()]})],2):t._e(),t._v(" "),t.hasScrollBar?n("div",{class:"swiper-scrollbar swiper-scrollbar-"+t.sortId}):t._e()]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()]):n("div",{class:["image-warp",3==t.styleType&&"pc"!=t.mode?"image-type3":""],style:[t.picStyle,3===t.animationHoverObj.type&&t.hoverStyleShow?t.hoverStyle:""]},t._l(t.attributeJson.list,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],key:i,staticClass:"image-item",style:[t.picItemStyle]},[n("img",{class:{contain:1!=t.styleType},attrs:{src:0!=e.picList.length?e.picList[0].resourcePath:"",alt:""}}),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e(),t._v(" "),5===t.animationHoverObj.type&&t.hoverImage&&t.hoverStyleShow?n("img",{staticClass:"hover-image",attrs:{src:t.hoverImage,alt:""}}):t._e(),t._v(" "),0!=e.picList.length&&0!=e.popList.length?n("div",[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))],1):t._e()])}),0)])])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(171);e.a=i.a},function(t,e,n){"use strict";function i(t){n(172)}var r=n(45),a=n(180),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-246200b7",null);e.a=l.exports},function(t,e,n){var i=n(173);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1b8fe5b3",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".video-wrap[data-v-246200b7]{border:none;touch-action:auto;position:absolute}.video-wrap .entrance-con[data-v-246200b7]{position:relative;width:100%;height:100%;overflow:hidden}.video-wrap .video-con[data-v-246200b7]{position:relative}.video-wrap .video-con .hot-image[data-v-246200b7]{position:absolute;left:0;top:0;width:100%;height:100%}.video-wrap .video-con .hot-image img[data-v-246200b7]{width:100%;height:100%}",""])},function(t,e,n){"use strict";var i=n(5),r=n(14),a=n(46);e.a={name:"videoItem",mixins:[i.a],components:{hotspot:r.a,myVideoPlayer:a.a},props:{attributeJson:{type:Object,default:function(){}},ratio:{type:Number,default:1}},data:function(){return{autoPlay:!1}},watch:{"videoInfo.checkedAttr":{handler:function(t){this.autoPlay=t.indexOf("autoPlay")>-1},immediate:!0,deep:!0}},computed:{videoItem:function(){return this.attributeJson.videoInfo.list},videoHotPic:function(){return this.attributeJson.videoHotInfo.picList},videoHotPop:function(){return this.attributeJson.videoHotInfo.popList},videoInfo:function(){return this.attributeJson.videoInfo},hotData:function(){var t=this.attributeJson;return{popList:t.videoHotInfo.popList,width:t.videoHotInfo.picList[0].width,height:t.videoHotInfo.picList[0].height,realWidth:t.baseStyle.w,realHeight:t.baseStyle.h}}},methods:{}}},function(t,e,n){"use strict";function i(t){n(176)}var r=n(47),a=n(179),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-30cb8026",null);e.a=l.exports},function(t,e,n){var i=n(177);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("2ad1437c",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".video-item[data-v-30cb8026]{width:100%!important;height:100%!important;object-fit:cover}.video-cover[data-v-30cb8026]{position:absolute;width:100%;height:100%;top:0;left:0}",""])},function(t,e,n){"use strict";e.a={name:"videoPlayer",props:{videoInfo:{type:Object,default:function(){}},autoPlay:{type:Boolean,default:!1},sort:{type:Number,default:0}},data:function(){return{isPlay:!1}},watch:{autoPlay:{handler:function(t){this.player&&(t?this.player.play():this.player.pause())},immediate:!0,deep:!0}},mounted:function(){var t=this,e=this;this.player=this.$video(this.$refs["myVideo-"+this.sort],{},function(){this.on("play",function(){e.isPlay=!0}),this.on("pause",function(){e.isPlay=!1})}),this.$nextTick(function(){t.play()})},methods:{play:function(){0!=this.videoInfo.list.length&&this.autoPlay&&this.player.play()},clickVideo:function(){this.isPlay?this.player.pause():this.player.play()}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{height:"100%",position:"relative"}},[n("video",{ref:"myVideo-"+t.sort,staticClass:"video-js vjs-default-skin vjs-big-play-centered vjs-16-9 video-item",attrs:{preload:"auto","x5-playsinline":"","x5-video-orientation":"landscape|portrait","x5-video-player-type":"h5","webkit-playsinline":"true",playsinline:"true",controls:t.videoInfo.checkedAttr.indexOf("controls")>-1,autoplay:t.autoPlay,loop:t.videoInfo.checkedAttr.indexOf("loop")>-1,muted:"true",poster:0!=t.videoInfo.list.length?t.videoInfo.list[0].imgUrl:""},domProps:{muted:!0}},[n("source",{attrs:{src:0!=t.videoInfo.list.length?t.videoInfo.list[0].resourcePath:""}})]),t._v(" "),n("div",{staticClass:"video-cover",on:{click:t.clickVideo}})])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"video-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:0!==t.videoItem.length,expression:"videoItem.length !== 0"}]},[n("div",{directives:[{name:"entrance",rawName:"v-entrance",value:{video:t.attributeJson.videoInfo},expression:"{video: attributeJson.videoInfo}"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["video-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",animationDuration:t.animationInObj.duration+"s"}},[n("myVideoPlayer",{attrs:{sort:(new Date).getTime(),videoInfo:t.videoInfo,autoPlay:t.autoPlay}}),t._v(" "),1===t.attributeJson.isVideoHasHot&&0!=t.videoHotPic.length?n("div",{staticClass:"hot-image"},[n("img",{attrs:{src:t.videoHotPic[0].resourcePath,alt:""}}),t._v(" "),n("hotspot",t._g({attrs:{item:t.hotData,ratio:t.ratio}},t.$listeners))],1):t._e()],1)])])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(182);e.a=i.a},function(t,e,n){"use strict";function i(t){n(183)}var r=n(48),a=n(186),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-771b7c13",null);e.a=l.exports},function(t,e,n){var i=n(184);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("55b4cb18",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".swiper-wrap[data-v-771b7c13]{position:absolute}.swiper-wrap .swiper-con[data-v-771b7c13]{position:relative;width:100%;height:100%;background-size:cover}.swiper-wrap .swiper-con .entrance-con[data-v-771b7c13]{position:relative;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container[data-v-771b7c13]{position:relative;width:100%;height:100%;transform:translateZ(0);overflow:hidden}.swiper-wrap .swiper-con .swiper-container .swiper-slide[data-v-771b7c13]{transform:translateZ(0);position:relative;overflow:hidden}.swiper-wrap .swiper-con .swiper-container .swiper-slide.slide-auto[data-v-771b7c13]{width:auto}.swiper-wrap .swiper-con .swiper-container .swiper-slide img[data-v-771b7c13]{object-fit:contain;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .swiper-hot[data-v-771b7c13]{position:absolute;width:100%;height:100%;left:0;top:0}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con[data-v-771b7c13]{position:relative}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-item[data-v-771b7c13]{object-fit:cover;position:relative;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-hot-image[data-v-771b7c13]{position:absolute;top:0;left:0;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-hot-image img[data-v-771b7c13]{object-fit:fill;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev[data-v-771b7c13]{background-image:none;left:20px}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev:hover .cms2iconfont[data-v-771b7c13]{color:var(--hoverColor)!important}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev[data-v-771b7c13]:after{display:none}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev .cms2iconfont[data-v-771b7c13]{font-size:28px}.swiper-wrap .swiper-con .swiper-container .swiper-button-next[data-v-771b7c13]{background-image:none;right:20px}.swiper-wrap .swiper-con .swiper-container .swiper-button-next:hover .cms2iconfont[data-v-771b7c13]{color:var(--hoverColor)!important}.swiper-wrap .swiper-con .swiper-container .swiper-button-next[data-v-771b7c13]:after{display:none}.swiper-wrap .swiper-con .swiper-container .swiper-button-next .cms2iconfont[data-v-771b7c13]{font-size:28px}.swiper-wrap .swiper-con .swiper-container .swiper-scrollbar-own[data-v-771b7c13]{position:absolute;height:3px;width:70%;left:50%;bottom:10px;background-color:var(--color);transform:translateX(-50%);z-index:10}.swiper-wrap .swiper-con .swiper-container .swiper-scrollbar-own .swiper-scrollbar-drag[data-v-771b7c13]{position:absolute;background-color:var(--activeColor);transition:all .3s}.swiper-wrap .swiper-con .swiper-container .arrow[data-v-771b7c13]{width:40px;height:40px;background-color:#edf5fe;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.swiper-wrap .swiper-con .swiper-container .arrow .cms2iconfont[data-v-771b7c13]{font-size:20px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-prev[data-v-771b7c13]{top:84%;left:36px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-prev .cms2iconfont[data-v-771b7c13]{font-size:24px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-next[data-v-771b7c13]{top:84%;right:0;left:98px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-next .cms2iconfont[data-v-771b7c13]{font-size:24px}.swiper-wrap .swiper-con-mobile .swiper-container .arrow[data-v-771b7c13]{width:32px;height:32px;background-color:#edf5fe;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.swiper-wrap .swiper-con-mobile .swiper-container .arrow .cms2iconfont[data-v-771b7c13]{font-size:12px!important}.hover-con[data-v-771b7c13]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-771b7c13],.hover-image[data-v-771b7c13]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(14)),s=n(5),l=n(46);e.a={name:"swiperItem",mixins:[s.a],components:{hotspot:o.a,myVideoPlayer:l.a},props:{sortId:{type:Number}},data:function(){return{hasSwiperItem:!1,swiper:"",videoShow:!0,activeIndex:0}},watch:{list:{handler:function(t){this.judgeSwiper()},immediate:!0,deep:!0},entranceShow:{handler:function(t){t&&this.initSwiper()}}},computed:{bgStyle:function(){return this.attributeJson.bgStyle},list:function(){return this.attributeJson.list},styleType:function(){return this.attributeJson.styleType},indicatorType:function(){return this.attributeJson.indicatorType},paginationStyle:function(){return this.attributeJson.paginationStyle},pageStyle:function(){return{color:this.attributeJson.paginationStyle.color}},hasSwiperPagination:function(){return 3==this.indicatorType},hasSwiperButton:function(){return 1!=this.indicatorType},hasScrollBar:function(){return"pc"==this.mode&&2==this.indicatorType}},methods:{judgeSwiper:function(){var t=this.attributeJson.list,e=t.findIndex(function(t){return 0!=t.picList.length||0!=t.videoInfo.list.length});this.hasSwiperItem=e>-1,this.hasSwiperItem&&this.initSwiper()},initSwiper:function(){var t=this;(this.hasSwiperItem||1===this.bgStyle.status&&0!=this.bgStyle.picList.length)&&this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null,t.videoShow=!1);var e=t.attributeJson;t.options={effect:"slide",loop:!0,observer:!0,observeParents:!0,autoplay:!!e.autoPlay&&{delay:1e3*e.interval,disableOnInteraction:!0,stopOnLastSlide:!1}},"mobile"==t.mode&&2==t.styleType&&(t.options.spaceBetween=20,t.options.loop=!1,t.options.slidesPerView="auto",t.options.centeredSlides=!0),t.hasSwiperPagination&&(t.options.pagination={el:".swiper-pagination-"+t.sortId,clickable:!0}),t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId});var n=t;t.options.on={slideChangeTransitionEnd:function(){n.activeIndex=this.activeIndex}},t.swiper=new r.a(".swiper-container-"+t.sortId,t.options),t.videoShow=!0})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"swiper-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.hasSwiperItem||1===t.bgStyle.status&&0!=t.bgStyle.picList.length?n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],class:["swiper-con","swiper-con-"+t.mode],style:{backgroundImage:0!=t.bgStyle.picList.length?"url("+t.bgStyle.picList[0].resourcePath+")":""}},[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color,width:t.baseStyle.w*t.ratio+"px",height:t.baseStyle.h*t.ratio+"px"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],key:t.indicatorType,class:["swiper-container swiper-container-"+t.sortId+" swiper-container-"+t.indicatorType,t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},attrs:{id:"mySwiper-"+t.sortId}},[n("div",{staticClass:"swiper-wrapper"},t._l(t.list,function(e,i){return n("div",{key:e.sort,staticClass:"swiper-slide"},[n("div",{style:{width:(t.baseStyle.w-(2==t.styleType?200:0))*t.ratio+"px!important",height:t.baseStyle.h*t.ratio+"px!important"}},[1===e.type?n("img",{attrs:{src:e.picList[0]&&e.picList[0].resourcePath,alt:""}}):t._e(),t._v(" "),2===e.type&&t.videoShow?n("div",{staticClass:"video-player-con"},[n("myVideoPlayer",{attrs:{sort:(new Date).getTime(),videoInfo:e.videoInfo,autoPlay:e.videoInfo.checkedAttr.indexOf("autoPlay")>-1&&t.activeIndex==i}}),t._v(" "),2==e.type&&1==e.isVideoHasHot&&0!=e.videoHotInfo.picList.length?n("div",{staticClass:"video-hot-image"},[n("img",{attrs:{src:e.videoHotInfo.picList[0].resourcePath,alt:""}}),t._v(" "),0!=e.videoHotInfo.picList.length?n("div",{staticClass:"swiper-hot"},[n("hotspot",t._g({attrs:{item:{realWidth:e.realWidth,realHeight:e.realHeight,popList:e.videoHotInfo.popList,width:e.videoHotInfo.picList[0].width,height:e.videoHotInfo.picList[0].height},ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))],1):t._e()]):t._e()],1):t._e(),t._v(" "),1==e.type&&0!=e.picList.length?[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))]:t._e()],2)])}),0),t._v(" "),t.hasScrollBar?n("div",{staticClass:"swiper-scrollbar-own"},[n("div",{staticClass:"swiper-scrollbar-drag",style:{width:100/t.list.length+"%",left:(t.activeIndex>t.list.length?0:100/t.list.length*(t.activeIndex-1))+"%"}})]):t._e(),t._v(" "),t.hasSwiperPagination?n("div",{class:"swiper-pagination swiper-pagination-"+t.sortId+" swiper-pagination-"+t.attributeJson.indicatorType}):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-prev","swiper-button-prev-"+t.sortId]},[t._t("swiper-button-prev",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft",style:t.pageStyle})]):t._e(),t._v(" "),4==t.indicatorType?n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-left",style:t.pageStyle})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-next","swiper-button-next-"+t.sortId]},[t._t("swiper-button-next",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright",style:t.pageStyle})]):t._e(),t._v(" "),4==t.indicatorType?n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-right",style:t.pageStyle})]):t._e()]})],2):t._e()])]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(188);e.a=i.a},function(t,e,n){"use strict";function i(t){n(189)}var r=n(49),a=n(192),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-e41211e8",null);e.a=l.exports},function(t,e,n){var i=n(190);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1ecd2f3c",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.button-wrap[data-v-e41211e8]{font-size:12px;position:absolute;border:none;touch-action:auto}.button-wrap .entrance-con[data-v-e41211e8]{position:relative;width:100%;height:100%}.button-wrap .button-cl[data-v-e41211e8]{width:100%;height:100%}.button-wrap .button-cl .button-content[data-v-e41211e8]{width:100%;height:100%;color:#000;display:flex;align-items:center;justify-content:center;line-height:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background-size:cover;cursor:pointer;position:relative}.button-wrap .button-cl .button-content.default[data-v-e41211e8]:hover{background-color:var(--bgColor)!important;transition:background-color .3s}.button-wrap .button-cl .button-content.left[data-v-e41211e8]:before{content:"";position:absolute;right:0;top:0;height:100%;width:var(--width);background-color:var(--bgColor);transition:width .3s;z-index:1}.button-wrap .button-cl .button-content.right[data-v-e41211e8]:before{content:"";position:absolute;left:0;top:0;height:100%;width:var(--width);background-color:var(--bgColor);transition:width .3s;z-index:1}.button-wrap .button-cl .button-content.top[data-v-e41211e8]:after{content:"";position:absolute;width:100%;height:var(--height);left:0;bottom:0;background-color:var(--bgColor);transition:height .3s;z-index:1}.button-wrap .button-cl .button-content.bottom[data-v-e41211e8]:after{content:"";position:absolute;width:100%;background-color:var(--bgColor);top:0;left:0;height:var(--height);transition:height .3s;z-index:1}.button-wrap .button-cl .button-content .label[data-v-e41211e8]{z-index:10}.button-wrap .flexCenterBetween[data-v-e41211e8]{display:flex;justify-content:space-between;align-items:center}.hover-con[data-v-e41211e8]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-e41211e8],.hover-image[data-v-e41211e8]{width:100%;height:100%;position:absolute;left:0;top:0}',""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"buttonItem",mixins:[i.a],components:{},props:{},data:function(){return{iconImage:"",backgroundImage:"",hoverButtonStyle:{}}},watch:{bgStyle:{handler:function(t){0!=t.picList.length&&(this.backgroundImage=2===t.type?t.picList[0].resourcePath:"")},immediate:!0,deep:!0},iconStyle:{handler:function(t){0!=t.picList.length&&(this.iconImage=1===t.type?t.picList[0].resourcePath:"")},immediate:!0,deep:!0}},computed:{iconStyle:function(){return this.attributeJson.iconStyle},bgStyle:function(){return this.attributeJson.bgStyle},buttonStyle:function(){var t=this.attributeJson,e=t.bgStyle,n=t.fontStyle,i=t.borderStyle,r=t.space,a=i.borderTop,o=i.borderRight,s=i.borderBottom,l=i.borderLeft,c=i.borderColor,u={fontSize:n.fontSize,color:n.color,backgroundColor:1===e.type?e.backgroundColor:"",fontWeight:n.fontWeight?"bold":"",textDecoration:n.textDecoration?"underline":"",fontStyle:n.fontItalic?"italic":"",borderRadius:i.borderRadius+"px",backgroundImage:"url('"+this.backgroundImage+"')",paddingLeft:r.left+"px",paddingRight:r.right+"px"};return 1===i.type&&c&&(u.border="1px solid "+c),2===i.type&&(a=a?"1px solid "+a:"none",o=o?"1px solid "+o:"none",s=s?"1px solid "+s:"none",l=l?"1px solid "+l:"none"),u}},methods:{textMouseOver:function(){this.attributeJson.fontStyle.hoverObj.color&&this.$set(this.hoverButtonStyle,"color",this.attributeJson.fontStyle.hoverObj.color)},textMouseLeave:function(){this.$set(this.hoverButtonStyle,"color","")},pageClick:function(){this.$emit("jumpLink",this.attributeJson.linkObj)}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"button-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["button-cl",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},on:{click:t.pageClick}},[n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],staticClass:"button-content",class:[{flexCenterBetween:t.iconImage},4===t.animationHoverObj.type?t.hoverDirection:""],style:[t.buttonStyle,{"--width":t.hoverStyleShow?"100%":"0","--height":t.hoverStyleShow?"100%":"0","--bgColor":t.animationHoverObj.bgStyle.backgroundColor}],on:{mouseover:function(e){return e.stopPropagation(),t.textMouseOver.apply(null,arguments)},mouseleave:t.textMouseLeave}},[1===t.iconStyle.type&&1===t.iconStyle.position&&t.iconImage?n("img",{attrs:{src:t.iconImage,alt:""}}):t._e(),t._v(" "),n("div",{staticClass:"label",style:t.hoverButtonStyle},[t._v(t._s(t.attributeJson.label||"按钮"))]),t._v(" "),1===t.iconStyle.type&&2===t.iconStyle.position&&t.iconImage?n("img",{attrs:{src:t.iconImage,alt:""}}):t._e(),t._v(" "),5===t.animationHoverObj.type&&t.hoverImage&&t.hoverStyleShow?n("img",{staticClass:"hover-image",attrs:{src:t.hoverImage,alt:""}}):t._e()]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0,borderRadius:t.attributeJson.borderStyle.borderRadius+"px"}]}):t._e()])])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(194);e.a=i.a},function(t,e,n){"use strict";function i(t){n(195)}var r=n(50),a=n(198),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-57083a4a",null);e.a=l.exports},function(t,e,n){var i=n(196);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("089a48d5",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".product-wrap[data-v-57083a4a]{border:none;position:absolute;touch-action:auto}.product-wrap .entrance-con[data-v-57083a4a]{position:relative;width:100%;height:100%}.product-wrap .product-con[data-v-57083a4a]{overflow:hidden;position:relative}.product-wrap .product-con .slide-con[data-v-57083a4a]{position:relative;width:100%;display:flex;overflow-x:auto}.product-wrap .product-con .slide-con[data-v-57083a4a]::-webkit-scrollbar{display:none}.product-wrap .product-con .slide-con .product-item[data-v-57083a4a]{flex-shrink:0;width:40%;overflow:hidden}.product-wrap .product-con .slide-con-2-pc[data-v-57083a4a]{flex-wrap:wrap}.product-wrap .product-con .slide-con-2-pc .product-item[data-v-57083a4a]{width:33.3%}.product-wrap .product-con .slide-con-2-mobile[data-v-57083a4a]{flex-wrap:wrap}.product-wrap .product-con .slide-con-2-mobile .product-item[data-v-57083a4a]{width:50%}.product-wrap .product-con .price-con[data-v-57083a4a]{display:flex;align-items:baseline;width:100%;padding:10px 0}.product-wrap .product-con .price-con .standardPrice[data-v-57083a4a]{margin-left:10px;text-decoration:line-through}.product-wrap .product-con .product-info[data-v-57083a4a]{transition:opacity .4s;padding:10px 2px 0}.product-wrap .product-con .product-info.position1[data-v-57083a4a]{text-align:left}.product-wrap .product-con .product-info.position2[data-v-57083a4a]{text-align:center}.product-wrap .product-con .product-info.position2 .price-con[data-v-57083a4a]{display:flex;justify-content:center}.product-wrap .product-con .product-info.position3[data-v-57083a4a]{text-align:right}.product-wrap .product-con .product-info.position3 .price-con[data-v-57083a4a]{display:flex;justify-content:flex-end}.product-wrap .product-con .transparent[data-v-57083a4a]{opacity:0}.product-wrap .product-con .product-image[data-v-57083a4a]{width:100%;height:auto;overflow:hidden}.product-wrap .product-con .product-image img[data-v-57083a4a]{position:relative;width:100%;transition:all .3s}.product-wrap .product-con .productInfo[data-v-57083a4a]{padding:0 10px}.product-wrap .product-con .swiper-container .swiper-wrapper .swiper-slide[data-v-57083a4a]{position:relative}.product-wrap .product-con .swiper-scrollbar[data-v-57083a4a]{height:3px;width:70%;left:50%;bottom:10px;transform:translateX(-50%)}.product-wrap .product-con .swiper-button-prev[data-v-57083a4a]{background-image:none;left:20px}.product-wrap .product-con .swiper-button-prev[data-v-57083a4a]:after{display:none}.product-wrap .product-con .swiper-button-prev:hover .cms2iconfont[data-v-57083a4a]{color:var(--hoverColor)!important}.product-wrap .product-con .swiper-button-prev .cms2iconfont[data-v-57083a4a]{font-size:28px}.product-wrap .product-con .swiper-button-next[data-v-57083a4a]{background-image:none;right:20px}.product-wrap .product-con .swiper-button-next:hover .cms2iconfont[data-v-57083a4a]{color:var(--hoverColor)!important}.product-wrap .product-con .swiper-button-next[data-v-57083a4a]:after{display:none}.product-wrap .product-con .swiper-button-next .cms2iconfont[data-v-57083a4a]{font-size:28px}.hover-con[data-v-57083a4a]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-57083a4a],.hover-image[data-v-57083a4a]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(5)),s=n(44),l=n(35),c=s.a;e.a={name:"productItem",mixins:[o.a],components:{},props:{sortId:{type:Number}},data:function(){return{productList:[],swiper:"",productStyle:{},service:new l.a,productIndex:""}},watch:{addProduct:{handler:function(t){1==t.type&&0==t.itemCodeList.length||(2!=t.type||t.categoryGroupCode)&&(3!=t.type||t.cmsSortCode)&&this.getProductList()},immediate:!0,deep:!0},entranceShow:{handler:function(t){t&&this.isSwiper&&this.initSwiper()}}},computed:{addProduct:function(){return this.attributeJson.addProduct},goodsPaddingSpacing:function(){return this.attributeJson.goodsPaddingSpacing},goodsSpacing:function(){return this.attributeJson.goodsSpacing},itemsPerLine:function(){return this.attributeJson.itemsPerLine},indicatorType:function(){return this.attributeJson.indicatorType},isSwiper:function(){return"pc"==this.mode&&1==this.styleType||"mobile"==this.mode&&2==this.styleType&&(2==this.indicatorType||3==this.indicatorType)},hasSwiperButton:function(){return"pc"==this.mode&&1==this.styleType&&2==this.indicatorType||"mobile"==this.mode&&2==this.styleType&&2==this.indicatorType},hasScrollBar:function(){return"mobile"==this.mode&&2==this.styleType&&3==this.indicatorType},paginationStyle:function(){return this.attributeJson.paginationStyle},pageStyle:function(){return{color:this.paginationStyle.color}},showNum:function(){var t=1;return"pc"==this.mode?t=this.attributeJson.itemsPerLine:1==this.attributeJson.styleType?t=2.5:2==this.attributeJson.styleType&&(t=this.attributeJson.itemsPerLine),t}},mounted:function(){},methods:{getProductList:function(){var t=this,e={};switch(this.addProduct.type){case 1:e={itemCodeList:this.addProduct.itemCodeList,pageNum:1,pageSize:this.addProduct.itemCodeList.length};break;case 2:e={categoryParam:{categoryCodeList:this.addProduct.categoryCodeList,categoryGroupCode:this.addProduct.categoryGroupCode},pageNum:1,pageSize:this.addProduct.max,sortRuleId:this.addProduct.sortId};break;case 3:e={pageNum:1,pageSize:this.addProduct.max,sortField:this.addProduct.cmsSortCode}}3==this.addProduct.type?this.service.getSortProductInfo(this.envUrl,e).then(function(e){e&&e.list?(t.productList=e.list,t.initProduct()):t.productList=[]}):this.service.getProductInfo(this.envUrl,e).then(function(e){e&&e.list?(t.productList=e.list,t.initProduct()):t.productList=[]})},initProduct:function(){var t=this,e=this.attributeJson,n=this.addProduct;2==e.goodsImgType&&0!=n.customImageList.length&&this.productList.forEach(function(e,i){0!=n.customImageList[i].picList.length&&t.$set(e,"customImage",n.customImageList[i].picList[0].resourcePath)}),this.productList&&this.productList.length>0&&(this.isSwiper?this.initSwiper():this.initSlide())},initSwiper:c(function(){var t=this,e=this.attributeJson,n=(this.mode,this.indicatorType),i=this.styleType;this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null),t.options={effect:"slide",autoplay:!1,slidesPerView:t.showNum,spaceBetween:e.goodsSpacing},2==i&&2==n&&(t.options.pagination={el:".swiper-pagination-"+t.sortId,clickable:!0}),t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId}),t.hasScrollBar&&(t.options.scrollbar={el:".swiper-scrollbar-"+t.sortId,draggable:!0},t.options.freeMode=!0),t.swiper=new r.a(".swiper-container-"+t.sortId,t.options)})},400),initSlide:function(){this.productStyle={padding:"0 "+this.goodsSpacing/2+"px",width:(this.attributeJson.baseStyle.w*this.ratio-2*this.attributeJson.goodsPaddingSpacing+this.goodsSpacing)/this.showNum+"px",marginBottom:this.goodsSpacing+"px"}},gotoPDP:function(t,e,n){console.log(t,e,n),this.$emit("gotoPDP",{code:t,colorCode:e})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"product-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[0!==t.productList.length?n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color}},[0!==t.productList.length?n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["product-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:[{width:t.baseStyle.w*t.ratio+"px",height:t.baseStyle.h*t.ratio+"px",padding:"0 "+t.attributeJson.goodsPaddingSpacing+"px",animationDuration:t.animationInObj.duration+"s"}]},[t.isSwiper?t._e():n("div",{ref:"slide"+t.sortId,class:"slide-con slide-con-"+t.styleType+"-"+t.mode,style:{width:t.attributeJson.baseStyle.w*t.ratio+t.attributeJson.goodsSpacing+"px",margin:"0px -"+t.attributeJson.goodsSpacing/2+"px"}},t._l(t.productList,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate",value:{key:"productIndex",value:i},expression:"{key: 'productIndex', value: index}"}],key:e.id,staticClass:"product-item",style:[t.productStyle],on:{click:function(n){return t.gotoPDP(e.code,e.colorCode,e.name)}}},[n("div",{staticClass:"product-image"},[n("img",{style:[3===t.animationHoverObj.type&&t.productIndex==i&&t.hoverStyleShow?t.hoverStyle:""],attrs:{src:2==t.attributeJson.goodsImgType&&e.customImage?e.customImage:e.mainPicUrl,alt:""}})]),t._v(" "),n("div",{class:["product-info","position"+t.attributeJson.infoPoisition,{transparent:2==t.attributeJson.isHover&&!t.hoverStyleShow}]},[t._t("productInfo",function(){return[t.attributeJson.showInfo.indexOf(1)>-1?n("div",[t._v(t._s(e.name))]):t._e(),t._v(" "),n("div",{staticClass:"price-con"},[t.attributeJson.showInfo.indexOf(2)>-1?n("div",[t._v("¥"+t._s(e.salesPrice||0))]):t._e(),t._v(" "),e.salesPrice!=e.standardPrice&&t.attributeJson.showInfo.indexOf(3)>-1?n("div",{staticClass:"standardPrice"},[t._v("¥"+t._s(e.standardPrice||0))]):t._e()])]})],2),t._v(" "),2===t.animationHoverObj.type&&t.productIndex===i?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()])}),0),t._v(" "),t.isSwiper?n("div",{key:t.styleType+t.indicatorType,ref:"slide"+t.sortId,class:"swiper-container swiper-container-"+t.sortId,attrs:{id:"mySwiper-"+t.sortId}},[n("div",{staticClass:"swiper-wrapper",style:[{width:t.baseStyle.w*t.ratio+"px"}]},t._l(t.productList,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate",value:{key:"productIndex",value:i},expression:"{key: 'productIndex', value: index}"}],key:e.id,class:"swiper-slide swiper-slide-"+t.styleType+"-"+t.mode,style:[t.productStyle]},[n("div",{ref:"product"+e.code+i,refInFor:!0,on:{click:function(n){return t.gotoPDP(e.code,e.colorCode,e.name)}}},[n("div",{staticClass:"product-image"},[n("img",{style:[3===t.animationHoverObj.type&&t.productIndex==i&&t.hoverStyleShow?t.hoverStyle:""],attrs:{src:2==t.attributeJson.goodsImgType&&e.customImage?e.customImage:e.mainPicUrl,alt:""}})]),t._v(" "),n("div",{class:["product-info","position"+t.attributeJson.infoPoisition,{transparent:2==t.attributeJson.isHover&&!t.hoverStyleShow}]},[t._t("productInfo",function(){return[t.attributeJson.showInfo.indexOf(1)>-1?n("div",[t._v(t._s(e.name))]):t._e(),t._v(" "),n("div",{staticClass:"price-con"},[t.attributeJson.showInfo.indexOf(2)>-1?n("div",[t._v("¥"+t._s(e.salesPrice||0))]):t._e(),t._v(" "),e.salesPrice!=e.standardPrice&&t.attributeJson.showInfo.indexOf(3)>-1?n("div",{staticClass:"standardPrice"},[t._v("¥"+t._s(e.standardPrice||0))]):t._e()])]})],2),t._v(" "),2===t.animationHoverObj.type&&t.productIndex===i?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()])])}),0),t._v(" "),t.hasScrollBar?n("div",{class:"swiper-scrollbar swiper-scrollbar-"+t.sortId}):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-prev swiper-button-prev-"+t.sortId},[t._t("swiper-button-prev",function(){return[2==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft",style:t.pageStyle})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-next swiper-button-next-"+t.sortId},[t._t("swiper-button-next",function(){return[2==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright",style:t.pageStyle})]):t._e()]})],2):t._e()]):t._e()]):t._e()]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(200);e.a=i.a},function(t,e,n){"use strict";function i(t){n(201)}var r=n(51),a=n(204),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-6ce76fa4",null);e.a=l.exports},function(t,e,n){var i=n(202);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("b6843e04",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,"",""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"tabItem",mixins:[i.a],components:{},props:{},watch:{},data:function(){return{}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("vueDraggableResizable",{staticClass:"swiper-wrap",attrs:{w:t.attributeJson.baseStyle.w*t.ratio,h:t.attributeJson.baseStyle.h*t.ratio,x:t.attributeJson.baseStyle.l*t.ratio,y:t.attributeJson.baseStyle.t*t.ratio,"lock-aspect-ratio":t.attributeJson.baseStyle.isLocked,snap:!0,snapTolerance:5},on:{resizing:t.onResize,dragging:t.onDrag,refLineParams:t.getRefLineParams}},[n("div",[t._v("111")])])],1)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(206);e.a=i.a},function(t,e,n){"use strict";function i(t){n(207)}var r=n(52),a=n(210),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-e2f6b9dc",null);e.a=l.exports},function(t,e,n){var i=n(208);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("b0b6ffda",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.custom-wrap[data-v-e2f6b9dc]{position:absolute;border:none;touch-action:auto;width:100%}.custom-wrap .add-con[data-v-e2f6b9dc]{width:120px;height:84px;background-image:url("/src/assets/img/pc-cms-v2/icon.png");background-size:1941px 1407px;background-position:-684px -583px}.hover-con[data-v-e2f6b9dc]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-e2f6b9dc],.hover-image[data-v-e2f6b9dc]{width:100%;height:100%;position:absolute;left:0;top:0}',""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"customItem",mixins:[i.a],components:{},props:{},data:function(){return{}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"custom-wrap",style:{left:t.attributeJson.baseStyle.l*t.ratio+"px",top:t.attributeJson.baseStyle.t*t.ratio+"px"}},[t._t("customComponent",null,{attributeJson:t.attributeJson})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"single-layout",style:t.layoutStyle},[n("div",{staticStyle:{width:"100%",height:"100%"}},[t._l(t.layOutData.componentList,function(e,i){return[1==e.displayType?n(e.component,t._g(t._b({key:e.sort,tag:"component",style:{zIndex:i+1},attrs:{ratio:t.ratio,attributeJson:e.attributeJson,sortId:e.sort},scopedSlots:t._u([{key:"customComponent",fn:function(e){return[t._t("customComponent",null,{attributeJson:e.attributeJson})]}}],null,!0)},"component",t.$attrs,!1),t.$listeners)):t._e()]})],2)])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(213);e.a=i.a},function(t,e,n){"use strict";function i(t){n(214)}var r=n(53),a=n(219),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-489b7493",null);e.a=l.exports},function(t,e,n){var i=n(215);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1c3600ce",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".multiple-layout[data-v-489b7493]{width:100%;height:100%;justify-content:space-between;align-items:center;overflow:hidden;position:relative;display:flex}.multiple-layout .multiple-layout-bg[data-v-489b7493]{position:absolute;width:100%;height:100%;left:0;top:0}.multiple-layout .multiple-item[data-v-489b7493]{flex-shrink:0}",""])},function(t,e,n){"use strict";var i=n(23),r=n.n(i),a=n(217),o=(n.n(a),n(7));e.a={name:"multipleLayout",components:{vueDraggableResizable:r.a,singleLayout:o.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},inheritAttrs:!1,data:function(){return{w:200,currentItem:null,currentIndex:""}},watch:{},mounted:function(){},methods:{}}},function(t,e,n){var i=n(218);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("81e56c68",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.vdr{touch-action:none;border:1px dashed #d6d6d6}.handle,.vdr{position:absolute;box-sizing:border-box}.handle{width:8px;height:8px;background:#fff;border:1px solid #333;box-shadow:0 0 2px #bbb}.handle-tl{top:-5px;left:-5px;cursor:nw-resize}.handle-tm{top:-5px;left:calc(50% - 4px);cursor:n-resize}.handle-tr{top:-5px;right:-5px;cursor:ne-resize}.handle-ml{top:calc(50% - 4px);left:-5px;cursor:w-resize}.handle-mr{top:calc(50% - 4px);right:-5px;cursor:e-resize}.handle-bl{bottom:-5px;left:-5px;cursor:sw-resize}.handle-bm{bottom:-5px;left:calc(50% - 4px);cursor:s-resize}.handle-br{bottom:-5px;right:-5px;cursor:se-resize}.ref-line{position:absolute;background-color:#f0c;z-index:9999}.v-line{width:1px}.h-line{height:1px}@media only screen and (max-width:768px){[class*=handle-]:before{content:"";left:-10px;right:-10px;bottom:-10px;top:-10px;position:absolute}}',""])},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{key:t.layOutData.layoutStyle.height,staticClass:"multiple-layout",style:{height:Math.round(t.layOutData.layoutStyle.height*t.ratio)+"px"}},[t._l(t.layOutData.list,function(e,i){return[n("div",{staticClass:"multiple-item",style:{width:Math.round(e.baseStyle.w*t.ratio)+"px",height:Math.round(t.layOutData.layoutStyle.height*t.ratio)+"px",zIndex:t.currentIndex==i?1:"auto"}},[n("singleLayout",t._g(t._b({attrs:{layOutData:e,componentList:e.componentList,"parent-l":e.baseStyle.l,ratio:t.ratio,recordId:t.recordId,mode:t.mode}},"singleLayout",t.$attrs,!1),t.$listeners))],1)]})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(221);e.a=i.a},function(t,e,n){"use strict";function i(t){n(222)}var r=n(54),a=n(225),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-be11224a",null);e.a=l.exports},function(t,e,n){var i=n(223);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("87b1548e",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".custom-layout[data-v-be11224a]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden;position:relative}",""])},function(t,e,n){"use strict";e.a={name:"customLayout",props:{layOutData:{type:Object,default:function(){}}},inheritAttrs:!1}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"custom-layout"},[n("div",{staticClass:"add-con"}),t._v(" "),t._t("customComponent",null,{attributeJson:t.layOutData})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(227);e.a=i.a},function(t,e,n){"use strict";function i(t){n(228)}var r=n(55),a=n(237),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-6c87b5ea",null);e.a=l.exports},function(t,e,n){var i=n(229);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("344d5608",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".tab-layout[data-v-6c87b5ea]{overflow:hidden}.tab-layout .entrance-con[data-v-6c87b5ea],.tab-layout[data-v-6c87b5ea]{width:100%;height:100%;position:relative}.tab-layout .tab-detail[data-v-6c87b5ea]{overflow:hidden}.tab-layout .tab-detail .tab-list[data-v-6c87b5ea]{display:flex;align-items:center;overflow:auto}.tab-layout .tab-detail .tab-list[data-v-6c87b5ea]::-webkit-scrollbar{display:none}",""])},function(t,e,n){"use strict";var i=n(231),r=n(7);e.a={name:"tabLayout",components:{navItem:i.a,singleLayout:r.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},data:function(){return{tabIndex:0,activeSort:"",tabHeadTitleH:0}},computed:{hasTab:function(){return this.layOutData.list.some(function(t){return t.title})},list:function(){return this.layOutData.list},tabHeadInfo:function(){return this.layOutData.tabHeadInfo},navStyle:function(){var t=this.layOutData,e=t.tabHeadInfo,n=e.width,i=e.height,r=e.space,a=t.borderStyle,o=t.fontStyle,s=o.fontSize,l=o.color,c=o.fontWeight,u=o.textDecoration,d=o.fontItalic,p=o.hoverObj.color,f=a.borderTop,h=a.borderRight,m=a.borderBottom,v=a.borderLeft,g=a.borderColor,y=a.hoverObj;return{width:n*this.ratio+"px",height:i*this.ratio+"px",color:l,fontSize:s,fontWeight:c?"bold":"",textDecoration:u?"underline":"",fontStyle:d?"italic":"",marginRight:r*this.ratio+"px",borderTop:2===a.type&&f?"1px solid "+f:1===a.type&&g?"1px solid "+g:"none",borderRight:2===a.type&&h?"1px solid "+h:1===a.type&&g?"1px solid "+g:"none",borderBottom:2===a.type&&m?"1px solid "+m:1===a.type&&g?"1px solid "+g:"none",borderLeft:2===a.type&&v?"1px solid "+v:1===a.type&&g?"1px solid "+g:"none","--hoverColor":p,"--hoverBorderTop":2===y.type&&y.borderTop?"1px solid "+y.borderTop:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderRight":2===y.type&&y.borderRight?"1px solid "+y.borderRight:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderBottom":2===y.type&&y.borderBottom?"1px solid "+y.borderBottom:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderLeft":2===y.type&&y.borderLeft?"1px solid "+y.borderLeft:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none"}},titleStyle:function(){var t=this.layOutData.tabHeadInfo.titleStyle,e=t.fontSize,n=t.color,i=t.fontWeight,r=t.textDecoration,a=t.fontItalic;return{color:n,fontSize:e,fontWeight:i?"bold":"",textDecoration:r?"underline":"",fontStyle:a?"italic":"",paddingLeft:("pc"==this.mode?30:60)*this.ratio+"px",paddingBottom:("pc"==this.mode?40:80)*this.ratio+"px"}}},watch:{"layOutData.tabHeadInfo":{handler:function(t){var e=this;this.$nextTick(function(){e.tabHeadTitleH=2==e.layOutData.tabHeadInfo.showTitle&&e.$refs.tabHeadTitleDom?e.$refs.tabHeadTitleDom.clientHeight:0,e.setLayoutH()})},immediate:!0,deep:!0},"list.length":{handler:function(t){var e=this,n=this.list.findIndex(function(t,n){return t.sort==e.activeSort});n>-1?this.tabIndex=n:(this.tabIndex=this.tabIndex>0?this.tabIndex-1:0,this.activeSort=this.list[this.tabIndex].sort)},deep:!0},hasTab:{handler:function(t){t&&(this.activeSort=this.list[0].sort,this.tabIndex=0)}}},methods:{chooseTab:function(t,e){this.activeSort=t.sort,this.tabIndex=e,this.setLayoutH(),this.$emit("updateLayOut",{sort:this.layOutData.sort})},setLayoutH:function(){this.$set(this.layOutData.layoutStyle,"height",1*this.layOutData.list[this.tabIndex].height+1*this.layOutData.tabHeadInfo.height+1*this.tabHeadTitleH/this.ratio)}}}},function(t,e,n){"use strict";var i=n(232);e.a=i.a},function(t,e,n){"use strict";function i(t){n(233)}var r=n(56),a=n(236),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-55eeeb47",null);e.a=l.exports},function(t,e,n){var i=n(234);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("15a8f2ca",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".nav-item[data-v-55eeeb47]{text-overflow:ellipsis;white-space:nowrap;flex-shrink:0;display:flex;align-items:center;cursor:pointer;transition:all .2s;background-size:cover;overflow:hidden}.nav-item[data-v-55eeeb47]:last-child{margin-right:0}.nav-item[data-v-55eeeb47]:hover{color:var(--hoverColor)!important;border-top:var(--hoverBorderTop)!important;border-right:var(--hoverBorderRight)!important;border-bottom:var(--hoverBorderBottom)!important;border-left:var(--hoverBorderLeft)!important}",""])},function(t,e,n){"use strict";e.a={name:"navItem",props:{item:{type:Object,default:function(){}},active:{type:Boolean,default:!1},navStyle:{type:Object,default:function(){}},spacing:{type:[String,Number],default:0}},data:function(){return{}},watch:{},computed:{backStyle:function(){var t=this.item,e=this.active,n=0!=t.navStyle.picList.length?t.navStyle.picList[0].resourcePath:"",i=0!=t.navStyle.activePicList.length?t.navStyle.activePicList[0].resourcePath:n;return{backgroundColor:1==t.navStyle.type?e?t.navStyle.activeColor||t.navStyle.backgroundColor:t.navStyle.backgroundColor:"",backgroundImage:2==t.navStyle.type?e?"url('"+i+"')":"url('"+n+"')":""}}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"nav-item",style:[t.navStyle,t.backStyle]},[n("span",{style:{marginLeft:t.spacing+"px"}},[t._v(t._s(t.item.title))])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tab-layout"},[t.hasTab?n("div",{staticClass:"tab-detail entrance-con"},[n("div",[2==t.tabHeadInfo.showTitle?n("div",{ref:"tabHeadTitleDom",style:t.titleStyle},[n("span",[t._v(t._s(1==t.tabHeadInfo.customTitle?t.tabHeadInfo.title:t.list[t.tabIndex].title))])]):t._e(),t._v(" "),n("div",{staticClass:"tab-list",style:{marginLeft:("pc"==t.mode?30:60)*t.ratio+"px",height:t.navStyle.height}},t._l(t.list,function(e,i){return n("navItem",{key:i,attrs:{item:e,spacing:t.layOutData.fontStyle.spacing*t.ratio,active:t.tabIndex==i,navStyle:t.navStyle},nativeOn:{click:function(n){return t.chooseTab(e,i)}}})}),1),t._v(" "),n("div",{staticClass:"tab-content",style:{height:t.list[t.tabIndex].height*t.ratio+"px"}},[n("singleLayout",t._g(t._b({attrs:{layOutData:t.list[t.tabIndex],componentList:t.list[t.tabIndex].componentList,ratio:t.ratio,recordId:t.recordId,mode:t.mode}},"singleLayout",t.$attrs,!1),t.$listeners))],1)])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(239);e.a=i.a},function(t,e,n){"use strict";function i(t){n(240)}var r=n(57),a=n(243),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-5269e4b9",null);e.a=l.exports},function(t,e,n){var i=n(241);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("96607826",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".entrance-con[data-v-5269e4b9]{overflow:hidden;height:100%}.entrance-con .swiper-container[data-v-5269e4b9]{height:100%}.entrance-con .swiper-container .swiper-slide.slide-auto[data-v-5269e4b9]{width:auto!important}.entrance-con .swiper-container .swiper-slide .slide-con[data-v-5269e4b9]{position:relative;width:100%;height:100%;background-size:cover}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(7);e.a={name:"slideLayout",components:{singleLayout:a.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},data:function(){return{swiper:"",slideIndex:0,layWidth:1920,isInit:!1}},watch:{layoutStyle:{handler:function(t){this.layWidth=("pc"==this.mode?1920:750)*(t.widthStyle.width/100)},deep:!0,immediate:!0},slideLen:{handler:function(){this.calculateWidth()},immediate:!0}},computed:{layoutStyle:function(){return this.layOutData.layoutStyle},paginationStyle:function(){return this.layOutData.paginationStyle},bgStyle:function(){return this.layOutData.bgStyle},list:function(){return this.layOutData.list},styleType:function(){return this.layOutData.styleType},indicatorType:function(){return this.layOutData.indicatorType},widthStyle:function(){return this.layOutData.widthStyle},hasSwiperButton:function(){return 2==this.indicatorType},pageStyle:function(){return{color:this.layOutData.paginationStyle.color}},backStyle:function(){var t=this.bgStyle,e=this.layoutStyle,n=this.styleType,i=this.mode;return function(r){var a=this.list[r],o="",s="";return 1==t.status?1==t.type?o=t.backgroundColor||"":s=0!=t.picList.length?"url("+t.picList[0].resourcePath+")":"":1==a.bgStyle.type?o=a.bgStyle.backgroundColor||"":s=0!=a.bgStyle.picList.length?"url("+a.bgStyle.picList[0].resourcePath+")":"",{width:("mobile"==i||"pc"==i&&2==n?this.layWidth-(this.layOutData.lineSlideNum+1)*("mobile"==i?20:40)-("mobile"==i?30:60):this.layWidth)/this.layOutData.lineSlideNum*this.ratio+"px",height:e.height*this.ratio+"px",backgroundColor:o,backgroundImage:s}}},slideLen:function(){return this.layOutData.list.length},centeredSlides:function(){return"mobile"==this.mode||"pc"==this.mode&&2==this.styleType}},methods:{calculateWidth:function(){var t=this;this.$nextTick(function(){if(2==t.layOutData.widthStyle.type)return void t.initSwiper();var e=t.layWidth;t.list.forEach(function(t,n){var i=t.componentList[0],r=0;if(i){var a=i.attributeJson;if(2==i.type){r=a.list.some(function(t){return 0!=t.picList.length})?a.baseStyle.w+a.baseStyle.l:e}else if(3==i.type){var o=0!=a.videoInfo.list.length;r=o?a.baseStyle.w+a.baseStyle.l:e}else r=a.baseStyle.w+a.baseStyle.l}else r=e;t.slideWidth=r}),t.initSwiper()})},initSwiper:function(){var t=this;this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null,t.videoShow=!1);var e=t.layOutData,n=t.widthStyle,i=t.mode,a=t.ratio;t.options={effect:"slide",observer:!0,observeParents:!0,slidesPerView:"auto",slidesPerGroup:1,slidesPerGroupAuto:!0,centeredSlides:!0,loop:e.lineSlideNum<e.slideNum,spaceBetween:t.centeredSlides?"mobile"==i?20*a:40*a:0,autoplay:!!(e.autoPlay&&t.list.length>1)&&{delay:1e3*e.interval,disableOnInteraction:!0,stopOnLastSlide:!1}},1==n.type&&(t.options.loopedSlides=5);var o=t;t.options.on={slideChangeTransitionEnd:function(){o.slideIndex=this.activeIndex}},t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.recordId,prevEl:".swiper-button-prev-"+t.recordId}),t.swiper=new r.a(".swiper-container-"+t.recordId,t.options),t.videoShow=!0,console.log("[32m%s[0m","初始化轮播图",t.swiper)})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color}},[n("div",{key:t.indicatorType,class:["swiper-container swiper-container-"+t.recordId+" swiper-container-"+t.indicatorType],attrs:{id:"mySwiper-"+t.recordId}},[n("div",{staticClass:"swiper-wrapper"},t._l(t.list,function(e,i){return n("div",{key:e.sort,class:["swiper-slide",{"slide-auto":1==t.widthStyle.type||t.centeredSlides}]},[n("div",{staticClass:"slide-con",style:[t.backStyle(i),{width:1==t.widthStyle.type?e.slideWidth*t.ratio+"px":t.backStyle(i).width}]},[n("singleLayout",t._g(t._b({attrs:{layOutData:e,ratio:t.ratio,recordId:t.recordId,mode:t.mode,canAdjust:2==t.widthStyle.type}},"singleLayout",t.$attrs,!1),t.$listeners))],1)])}),0),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-prev","swiper-button-prev-"+t.recordId]},[t._t("swiper-button-prev",function(){return[n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-left",style:t.pageStyle})])]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-next","swiper-button-next-"+t.recordId]},[t._t("swiper-button-next",function(){return[n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-right",style:t.pageStyle})])]})],2):t._e()])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{ref:"cms"},[n("div",{class:["lay-wrap",{mobile:"mobile"==t.mode}]},t._l(t.cmsList,function(e,i){return n("div",{key:e.sort,staticClass:"lay-item"},[n("div",{staticClass:"layout-set",style:{width:e.attributeJson.layoutStyle&&2===e.attributeJson.layoutStyle.widthStyle.type?e.attributeJson.layoutStyle.widthStyle.width+"%":"100%",height:e.attributeJson.layoutStyle?Math.round(e.attributeJson.layoutStyle.height*t.ratio)+"px":"auto"}},[1===e.layoutType?n("singleLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"singleLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),2===e.layoutType?n("multipleLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"multipleLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),3===e.layoutType?n("customLayout",t._g(t._b({attrs:{layOutData:e.attributeJson},scopedSlots:t._u([{key:"customComponent",fn:function(e){return[t._t("customComponent",null,{attributeJson:e.attributeJson})]}}],null,!0)},"customLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),4===e.layoutType?n("tabLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"tabLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),5===e.layoutType?n("slideLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"slideLayout",t.$attrs,!1),t.$listeners)):t._e()],1)])}),0)])},r=[],a={render:i,staticRenderFns:r};e.a=a}])});
|
|
31
|
+
e.read=function(t,e,n,i,r){var a,o,s=8*r-i-1,l=(1<<s)-1,c=l>>1,u=-7,d=n?r-1:0,p=n?-1:1,f=t[e+d];for(d+=p,a=f&(1<<-u)-1,f>>=-u,u+=s;u>0;a=256*a+t[e+d],d+=p,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=i;u>0;o=256*o+t[e+d],d+=p,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(f?-1:1);o+=Math.pow(2,i),a-=c}return(f?-1:1)*o*Math.pow(2,a-i)},e.write=function(t,e,n,i,r,a){var o,s,l,c=8*a-r-1,u=(1<<c)-1,d=u>>1,p=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=i?0:a-1,h=i?1:-1,m=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),e+=o+d>=1?p/l:p*Math.pow(2,1-d),e*l>=2&&(o++,l/=2),o+d>=u?(s=0,o=u):o+d>=1?(s=(e*l-1)*Math.pow(2,r),o+=d):(s=e*Math.pow(2,d-1)*Math.pow(2,r),o=0));r>=8;t[n+f]=255&s,f+=h,s/=256,r-=8);for(o=o<<r|s,c+=r;c>0;t[n+f]=255&o,f+=h,o/=256,c-=8);t[n+f-h]|=128*m}},function(t,e){var n={}.toString;t.exports=Array.isArray||function(t){return"[object Array]"==n.call(t)}},function(t,e,n){"use strict";n.d(e,"i",function(){return l}),n.d(e,"h",function(){return c}),n.d(e,"d",function(){return u}),n.d(e,"f",function(){return d}),n.d(e,"e",function(){return f}),n.d(e,"c",function(){return h}),n.d(e,"g",function(){return m}),n.d(e,"a",function(){return v}),n.d(e,"b",function(){return g});var i=n(10),r=n.n(i),a={mp4:/^(av0?1|avc0?[1234]|vp0?9|flac|opus|mp3|mp4a|mp4v|stpp.ttml.im1t)/,webm:/^(vp0?[89]|av0?1|opus|vorbis)/,ogg:/^(vp0?[89]|theora|flac|opus|vorbis)/,video:/^(av0?1|avc0?[1234]|vp0?[89]|hvc1|hev1|theora|mp4v)/,audio:/^(mp4a|flac|vorbis|opus|ac-[34]|ec-3|alac|mp3|speex|aac)/,text:/^(stpp.ttml.im1t)/,muxerVideo:/^(avc0?1)/,muxerAudio:/^(mp4a)/,muxerText:/a^/},o=["video","audio","text"],s=["Video","Audio","Text"],l=function(t){return t?t.replace(/avc1\.(\d+)\.(\d+)/i,function(t,e,n){return"avc1."+("00"+Number(e).toString(16)).slice(-2)+"00"+("00"+Number(n).toString(16)).slice(-2)}):t},c=function(t){void 0===t&&(t="");var e=t.split(","),n=[];return e.forEach(function(t){t=t.trim();var e;o.forEach(function(i){var r=a[i].exec(t.toLowerCase());if(r&&!(r.length<=1)){e=i;var o=t.substring(0,r[1].length),s=t.replace(o,"");n.push({type:o,details:s,mediaType:i})}}),e||n.push({type:t,details:"",mediaType:"unknown"})}),n},u=function(t,e){if(!t.mediaGroups.AUDIO||!e)return null;var n=t.mediaGroups.AUDIO[e];if(!n)return null;for(var i in n){var r=n[i];if(r.default&&r.playlists)return c(r.playlists[0].attributes.CODECS)}return null},d=function(t){return void 0===t&&(t=""),a.audio.test(t.trim().toLowerCase())},p=function(t){return void 0===t&&(t=""),a.text.test(t.trim().toLowerCase())},f=function(t){if(t&&"string"==typeof t){var e=t.toLowerCase().split(",").map(function(t){return l(t.trim())}),n="video";1===e.length&&d(e[0])?n="audio":1===e.length&&p(e[0])&&(n="application");var i="mp4";return e.every(function(t){return a.mp4.test(t)})?i="mp4":e.every(function(t){return a.webm.test(t)})?i="webm":e.every(function(t){return a.ogg.test(t)})&&(i="ogg"),n+"/"+i+';codecs="'+t+'"'}},h=function(t){return void 0===t&&(t=""),r.a.MediaSource&&r.a.MediaSource.isTypeSupported&&r.a.MediaSource.isTypeSupported(f(t))||!1},m=function(t){return void 0===t&&(t=""),t.toLowerCase().split(",").every(function(t){t=t.trim();for(var e=0;e<s.length;e++){if(a["muxer"+s[e]].test(t))return!0}return!1})},v="mp4a.40.2",g="avc1.4d400d"},function(t,e,n){"use strict";n.d(e,"a",function(){return a});var i=/^(audio|video|application)\/(x-|vnd\.apple\.)?mpegurl/i,r=/^application\/dash\+xml/i,a=function(t){return i.test(t)?"hls":r.test(t)?"dash":"application/vnd.videojs.vhs+json"===t?"vhs-json":null}},function(t,e,n){"use strict";n.d(e,"a",function(){return E}),n.d(e,"b",function(){return D}),n.d(e,"c",function(){return Et}),n.d(e,"d",function(){return Ct});var i=n(28),r=n(116),a=n.n(r),o=n(117),s=n(29),l=n(118),c=(n.n(l),function(t){return!!t&&"object"==typeof t}),u=function t(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];return n.reduce(function(e,n){return"object"!=typeof n?e:(Object.keys(n).forEach(function(i){Array.isArray(e[i])&&Array.isArray(n[i])?e[i]=e[i].concat(n[i]):c(e[i])&&c(n[i])?e[i]=t(e[i],n[i]):e[i]=n[i]}),e)},{})},d=function(t){return Object.keys(t).map(function(e){return t[e]})},p=function(t,e){for(var n=[],i=t;i<e;i++)n.push(i);return n},f=function(t){return t.reduce(function(t,e){return t.concat(e)},[])},h=function(t){if(!t.length)return[];for(var e=[],n=0;n<t.length;n++)e.push(t[n]);return e},m=function(t,e){return t.reduce(function(t,n,i){return n[e]&&t.push(i),t},[])},v=function(t,e){for(var n=0;n<t.length;n++)if(e(t[n]))return n;return-1},g=function(t,e){return d(t.reduce(function(t,n){return n.forEach(function(n){t[e(n)]=n}),t},{}))},y={INVALID_NUMBER_OF_PERIOD:"INVALID_NUMBER_OF_PERIOD",DASH_EMPTY_MANIFEST:"DASH_EMPTY_MANIFEST",DASH_INVALID_XML:"DASH_INVALID_XML",NO_BASE_URL:"NO_BASE_URL",MISSING_SEGMENT_INFORMATION:"MISSING_SEGMENT_INFORMATION",SEGMENT_TIME_UNSPECIFIED:"SEGMENT_TIME_UNSPECIFIED",UNSUPPORTED_UTC_TIMING_SCHEME:"UNSUPPORTED_UTC_TIMING_SCHEME"},b=function(t){var e=t.baseUrl,n=void 0===e?"":e,r=t.source,o=void 0===r?"":r,s=t.range,l=void 0===s?"":s,c=t.indexRange,u=void 0===c?"":c,d={uri:o,resolvedUri:Object(i.a)(n||"",o)};if(l||u){var p=l||u,f=p.split("-"),h=a.a.BigInt?a.a.BigInt(f[0]):parseInt(f[0],10),m=a.a.BigInt?a.a.BigInt(f[1]):parseInt(f[1],10);h<Number.MAX_SAFE_INTEGER&&"bigint"==typeof h&&(h=Number(h)),m<Number.MAX_SAFE_INTEGER&&"bigint"==typeof m&&(m=Number(m));var v;v="bigint"==typeof m||"bigint"==typeof h?a.a.BigInt(m)-a.a.BigInt(h)+a.a.BigInt(1):m-h+1,"bigint"==typeof v&&v<Number.MAX_SAFE_INTEGER&&(v=Number(v)),d.byterange={length:v,offset:h}}return d},w=function(t){var e;return e="bigint"==typeof t.offset||"bigint"==typeof t.length?a.a.BigInt(t.offset)+a.a.BigInt(t.length)-a.a.BigInt(1):t.offset+t.length-1,t.offset+"-"+e},_=function(t){return t&&"number"!=typeof t&&(t=parseInt(t,10)),isNaN(t)?null:t},T={static:function(t){var e=t.duration,n=t.timescale,i=void 0===n?1:n,r=t.sourceDuration,a=t.periodDuration,o=_(t.endNumber),s=e/i;return"number"==typeof o?{start:0,end:o}:"number"==typeof a?{start:0,end:a/s}:{start:0,end:r/s}},dynamic:function(t){var e=t.NOW,n=t.clientOffset,i=t.availabilityStartTime,r=t.timescale,a=void 0===r?1:r,o=t.duration,s=t.periodStart,l=void 0===s?0:s,c=t.minimumUpdatePeriod,u=void 0===c?0:c,d=t.timeShiftBufferDepth,p=void 0===d?1/0:d,f=_(t.endNumber),h=(e+n)/1e3,m=i+l,v=h+u,g=v-m,y=Math.ceil(g*a/o),b=Math.floor((h-m-p)*a/o),w=Math.floor((h-m)*a/o);return{start:Math.max(0,b),end:"number"==typeof f?f:Math.min(y,w)}}},x=function(t){return function(e){var n=t.duration,i=t.timescale,r=void 0===i?1:i,a=t.periodStart,o=t.startNumber;return{number:(void 0===o?1:o)+e,duration:n/r,timeline:a,time:e*n}}},k=function(t){var e=t.type,n=t.duration,i=t.timescale,r=void 0===i?1:i,a=t.periodDuration,o=t.sourceDuration,s=T[e](t),l=s.start,c=s.end,u=p(l,c).map(x(t));if("static"===e){var d=u.length-1,f="number"==typeof a?a:o;u[d].duration=f-n/r*d}return u},S=function(t){var e=t.baseUrl,n=t.initialization,i=void 0===n?{}:n,r=t.sourceDuration,a=t.indexRange,o=void 0===a?"":a,s=t.periodStart,l=t.presentationTime,c=t.number,u=void 0===c?0:c,d=t.duration;if(!e)throw new Error(y.NO_BASE_URL);var p=b({baseUrl:e,source:i.sourceURL,range:i.range}),f=b({baseUrl:e,source:e,indexRange:o});if(f.map=p,d){var h=k(t);h.length&&(f.duration=h[0].duration,f.timeline=h[0].timeline)}else r&&(f.duration=r,f.timeline=s);return f.presentationTime=l||s,f.number=u,[f]},E=function(t,e,n){var i,r=t.sidx.map?t.sidx.map:null,o=t.sidx.duration,s=t.timeline||0,l=t.sidx.byterange,c=l.offset+l.length,u=e.timescale,d=e.references.filter(function(t){return 1!==t.referenceType}),p=[],f=t.endList?"static":"dynamic",h=t.sidx.timeline,m=h,v=t.mediaSequence||0;i="bigint"==typeof e.firstOffset?a.a.BigInt(c)+e.firstOffset:c+e.firstOffset;for(var g=0;g<d.length;g++){var y=e.references[g],b=y.referencedSize,w=y.subsegmentDuration,_=void 0;_="bigint"==typeof i?i+a.a.BigInt(b)-a.a.BigInt(1):i+b-1;var T=i+"-"+_,x={baseUrl:n,timescale:u,timeline:s,periodStart:h,presentationTime:m,number:v,duration:w,sourceDuration:o,indexRange:T,type:f},k=S(x)[0];r&&(k.map=r),p.push(k),i+="bigint"==typeof i?a.a.BigInt(b):b,m+=w/u,v++}return t.segments=p,t},C=["AUDIO","SUBTITLES"],A=function(t){return g(t,function(t){return t.timeline}).sort(function(t,e){return t.timeline>e.timeline?1:-1})},I=function(t,e){for(var n=0;n<t.length;n++)if(t[n].attributes.NAME===e)return t[n];return null},O=function(t){var e=[];return Object(o.a)(t,C,function(t,n,i,r){e=e.concat(t.playlists||[])}),e},j=function(t){var e=t.playlist,n=t.mediaSequence;e.mediaSequence=n,e.segments.forEach(function(t,n){t.number=e.mediaSequence+n})},P=function(t){var e=t.oldPlaylists,n=t.newPlaylists,i=t.timelineStarts;n.forEach(function(t){t.discontinuitySequence=v(i,function(e){return e.timeline===t.timeline});var n=I(e,t.attributes.NAME);if(n&&!t.sidx){var r=t.segments[0],a=v(n.segments,function(t){return Math.abs(t.presentationTime-r.presentationTime)<1/60});if(-1===a)return j({playlist:t,mediaSequence:n.mediaSequence+n.segments.length}),t.segments[0].discontinuity=!0,t.discontinuityStarts.unshift(0),void((!n.segments.length&&t.timeline>n.timeline||n.segments.length&&t.timeline>n.segments[n.segments.length-1].timeline)&&t.discontinuitySequence--);n.segments[a].discontinuity&&!r.discontinuity&&(r.discontinuity=!0,t.discontinuityStarts.unshift(0),t.discontinuitySequence--),j({playlist:t,mediaSequence:n.segments[a].number})}})},L=function(t){var e=t.oldManifest,n=t.newManifest,i=e.playlists.concat(O(e)),r=n.playlists.concat(O(n));return n.timelineStarts=A([e.timelineStarts,n.timelineStarts]),P({oldPlaylists:i,newPlaylists:r,timelineStarts:n.timelineStarts}),n},D=function(t){return t&&t.uri+"-"+w(t.byterange)},M=function(t){return d(t.reduce(function(t,e){var n=e.attributes.id+(e.attributes.lang||"");if(t[n]){if(e.segments){var i;e.segments[0]&&(e.segments[0].discontinuity=!0),(i=t[n].segments).push.apply(i,e.segments)}e.attributes.contentProtection&&(t[n].attributes.contentProtection=e.attributes.contentProtection)}else t[n]=e,t[n].attributes.timelineStarts=[];return t[n].attributes.timelineStarts.push({start:e.attributes.periodStart,timeline:e.attributes.periodStart}),t},{})).map(function(t){return t.discontinuityStarts=m(t.segments||[],"discontinuity"),t})},N=function(t,e){var n=D(t.sidx),i=n&&e[n]&&e[n].sidx;return i&&E(t,i,t.sidx.resolvedUri),t},R=function(t,e){if(void 0===e&&(e={}),!Object.keys(e).length)return t;for(var n in t)t[n]=N(t[n],e);return t},B=function(t,e){var n,i=t.attributes,r=t.segments,a=t.sidx,o=t.mediaSequence,s=t.discontinuitySequence,l=t.discontinuityStarts,c={attributes:(n={NAME:i.id,BANDWIDTH:i.bandwidth,CODECS:i.codecs},n["PROGRAM-ID"]=1,n),uri:"",endList:"static"===i.type,timeline:i.periodStart,resolvedUri:"",targetDuration:i.duration,discontinuitySequence:s,discontinuityStarts:l,timelineStarts:i.timelineStarts,mediaSequence:o,segments:r};return i.contentProtection&&(c.contentProtection=i.contentProtection),a&&(c.sidx=a),e&&(c.attributes.AUDIO="audio",c.attributes.SUBTITLES="subs"),c},U=function(t){var e,n=t.attributes,i=t.segments,r=t.mediaSequence,a=t.discontinuityStarts,o=t.discontinuitySequence;void 0===i&&(i=[{uri:n.baseUrl,timeline:n.periodStart,resolvedUri:n.baseUrl||"",duration:n.sourceDuration,number:0}],n.duration=n.sourceDuration);var s=(e={NAME:n.id,BANDWIDTH:n.bandwidth},e["PROGRAM-ID"]=1,e);return n.codecs&&(s.CODECS=n.codecs),{attributes:s,uri:"",endList:"static"===n.type,timeline:n.periodStart,resolvedUri:n.baseUrl||"",targetDuration:n.duration,timelineStarts:n.timelineStarts,discontinuityStarts:a,discontinuitySequence:o,mediaSequence:r,segments:i}},F=function(t,e,n){void 0===e&&(e={}),void 0===n&&(n=!1);var i,r=t.reduce(function(t,r){var a=r.attributes.role&&r.attributes.role.value||"",o=r.attributes.lang||"",s=r.attributes.label||"main";if(o&&!r.attributes.label){var l=a?" ("+a+")":"";s=""+r.attributes.lang+l}t[s]||(t[s]={language:o,autoselect:!0,default:"main"===a,playlists:[],uri:""});var c=N(B(r,n),e);return t[s].playlists.push(c),void 0===i&&"main"===a&&(i=r,i.default=!0),t},{});if(!i){r[Object.keys(r)[0]].default=!0}return r},z=function(t,e){return void 0===e&&(e={}),t.reduce(function(t,n){var i=n.attributes.lang||"text";return t[i]||(t[i]={language:i,default:!1,autoselect:!1,playlists:[],uri:""}),t[i].playlists.push(N(U(n),e)),t},{})},H=function(t){return t.reduce(function(t,e){return e?(e.forEach(function(e){var n=e.channel,i=e.language;t[i]={autoselect:!1,default:!1,instreamId:n,language:i},e.hasOwnProperty("aspectRatio")&&(t[i].aspectRatio=e.aspectRatio),e.hasOwnProperty("easyReader")&&(t[i].easyReader=e.easyReader),e.hasOwnProperty("3D")&&(t[i]["3D"]=e["3D"])}),t):t},{})},V=function(t){var e,n=t.attributes,i=t.segments,r=t.sidx,a=t.discontinuityStarts,o={attributes:(e={NAME:n.id,AUDIO:"audio",SUBTITLES:"subs",RESOLUTION:{width:n.width,height:n.height},CODECS:n.codecs,BANDWIDTH:n.bandwidth},e["PROGRAM-ID"]=1,e),uri:"",endList:"static"===n.type,timeline:n.periodStart,resolvedUri:"",targetDuration:n.duration,discontinuityStarts:a,timelineStarts:n.timelineStarts,segments:i};return n.frameRate&&(o.attributes["FRAME-RATE"]=n.frameRate),n.contentProtection&&(o.contentProtection=n.contentProtection),r&&(o.sidx=r),o},$=function(t){var e=t.attributes;return"video/mp4"===e.mimeType||"video/webm"===e.mimeType||"video"===e.contentType},X=function(t){var e=t.attributes;return"audio/mp4"===e.mimeType||"audio/webm"===e.mimeType||"audio"===e.contentType},Y=function(t){var e=t.attributes;return"text/vtt"===e.mimeType||"text"===e.contentType},W=function(t,e){t.forEach(function(t){t.mediaSequence=0,t.discontinuitySequence=v(e,function(e){return e.timeline===t.timeline}),t.segments&&t.segments.forEach(function(t,e){t.number=e})})},q=function(t){return t?Object.keys(t).reduce(function(e,n){var i=t[n];return e.concat(i.playlists)},[]):[]},G=function(t){var e,n=t.dashPlaylists,i=t.locations,r=t.sidxMapping,a=void 0===r?{}:r,o=t.previousManifest;if(!n.length)return{};var s=n[0].attributes,l=s.sourceDuration,c=s.type,u=s.suggestedPresentationDelay,d=s.minimumUpdatePeriod,p=M(n.filter($)).map(V),f=M(n.filter(X)),h=M(n.filter(Y)),m=n.map(function(t){return t.attributes.captionServices}).filter(Boolean),v={allowCache:!0,discontinuityStarts:[],segments:[],endList:!0,mediaGroups:(e={AUDIO:{},VIDEO:{}},e["CLOSED-CAPTIONS"]={},e.SUBTITLES={},e),uri:"",duration:l,playlists:R(p,a)};d>=0&&(v.minimumUpdatePeriod=1e3*d),i&&(v.locations=i),"dynamic"===c&&(v.suggestedPresentationDelay=u);var g=0===v.playlists.length,y=f.length?F(f,a,g):null,b=h.length?z(h,a):null,w=p.concat(q(y),q(b)),_=w.map(function(t){return t.timelineStarts});return v.timelineStarts=A(_),W(w,v.timelineStarts),y&&(v.mediaGroups.AUDIO.audio=y),b&&(v.mediaGroups.SUBTITLES.subs=b),m.length&&(v.mediaGroups["CLOSED-CAPTIONS"].cc=H(m)),o?L({oldManifest:o,newManifest:v}):v},J=function(t,e,n){var i=t.NOW,r=t.clientOffset,a=t.availabilityStartTime,o=t.timescale,s=void 0===o?1:o,l=t.periodStart,c=void 0===l?0:l,u=t.minimumUpdatePeriod,d=void 0===u?0:u,p=(i+r)/1e3,f=a+c,h=p+d,m=h-f;return Math.ceil((m*s-e)/n)},K=function(t,e){for(var n=t.type,i=t.minimumUpdatePeriod,r=void 0===i?0:i,a=t.media,o=void 0===a?"":a,s=t.sourceDuration,l=t.timescale,c=void 0===l?1:l,u=t.startNumber,d=void 0===u?1:u,p=t.periodStart,f=[],h=-1,m=0;m<e.length;m++){var v=e[m],g=v.d,y=v.r||0,b=v.t||0;h<0&&(h=b),b&&b>h&&(h=b);var w=void 0;if(y<0){var _=m+1;w=_===e.length?"dynamic"===n&&r>0&&o.indexOf("$Number$")>0?J(t,h,g):(s*c-h)/g:(e[_].t-h)/g}else w=y+1;for(var T=d+f.length+w,x=d+f.length;x<T;)f.push({number:x,duration:g/c,time:h,timeline:p}),h+=g,x++}return f},Z=/\$([A-z]*)(?:(%0)([0-9]+)d)?\$/g,Q=function(t){return function(e,n,i,r){if("$$"===e)return"$";if(void 0===t[n])return e;var a=""+t[n];return"RepresentationID"===n?a:(r=i?parseInt(r,10):1,a.length>=r?a:""+new Array(r-a.length+1).join("0")+a)}},tt=function(t,e){return t.replace(Z,Q(e))},et=function(t,e){return t.duration||e?t.duration?k(t):K(t,e):[{number:t.startNumber||1,duration:t.sourceDuration,time:0,timeline:t.periodStart}]},nt=function(t,e){var n={RepresentationID:t.id,Bandwidth:t.bandwidth||0},r=t.initialization,a=void 0===r?{sourceURL:"",range:""}:r,o=b({baseUrl:t.baseUrl,source:tt(a.sourceURL,n),range:a.range});return et(t,e).map(function(e){n.Number=e.number,n.Time=e.time;var r=tt(t.media||"",n),a=t.timescale||1,s=t.presentationTimeOffset||0,l=t.periodStart+(e.time-s)/a;return{uri:r,timeline:e.timeline,duration:e.duration,resolvedUri:Object(i.a)(t.baseUrl||"",r),map:o,number:e.number,presentationTime:l}})},it=function(t,e){var n=t.baseUrl,i=t.initialization,r=void 0===i?{}:i,a=b({baseUrl:n,source:r.sourceURL,range:r.range}),o=b({baseUrl:n,source:e.media,range:e.mediaRange});return o.map=a,o},rt=function(t,e){var n=t.duration,i=t.segmentUrls,r=void 0===i?[]:i,a=t.periodStart;if(!n&&!e||n&&e)throw new Error(y.SEGMENT_TIME_UNSPECIFIED);var o,s=r.map(function(e){return it(t,e)});return n&&(o=k(t)),e&&(o=K(t,e)),o.map(function(e,n){if(s[n]){var i=s[n],r=t.timescale||1,o=t.presentationTimeOffset||0;return i.timeline=e.timeline,i.duration=e.duration,i.number=e.number,i.presentationTime=a+(e.time-o)/r,i}}).filter(function(t){return t})},at=function(t){var e,n,i=t.attributes,r=t.segmentInfo;r.template?(n=nt,e=u(i,r.template)):r.base?(n=S,e=u(i,r.base)):r.list&&(n=rt,e=u(i,r.list));var a={attributes:i};if(!n)return a;var o=n(e,r.segmentTimeline);if(e.duration){var s=e,l=s.duration,c=s.timescale,d=void 0===c?1:c;e.duration=l/d}else o.length?e.duration=o.reduce(function(t,e){return Math.max(t,Math.ceil(e.duration))},0):e.duration=0;return a.attributes=e,a.segments=o,r.base&&e.indexRange&&(a.sidx=o[0],a.segments=[]),a},ot=function(t){return t.map(at)},st=function(t,e){return h(t.childNodes).filter(function(t){return t.tagName===e})},lt=function(t){return t.textContent.trim()},ct=function(t){return parseFloat(t.split("/").reduce(function(t,e){return t/e}))},ut=function(t){var e=/P(?:(\d*)Y)?(?:(\d*)M)?(?:(\d*)D)?(?:T(?:(\d*)H)?(?:(\d*)M)?(?:([\d.]*)S)?)?/,n=e.exec(t);if(!n)return 0;var i=n.slice(1),r=i[0],a=i[1],o=i[2],s=i[3],l=i[4],c=i[5];return 31536e3*parseFloat(r||0)+2592e3*parseFloat(a||0)+86400*parseFloat(o||0)+3600*parseFloat(s||0)+60*parseFloat(l||0)+parseFloat(c||0)},dt=function(t){return/^\d+-\d+-\d+T\d+:\d+:\d+(\.\d+)?$/.test(t)&&(t+="Z"),Date.parse(t)},pt={mediaPresentationDuration:function(t){return ut(t)},availabilityStartTime:function(t){return dt(t)/1e3},minimumUpdatePeriod:function(t){return ut(t)},suggestedPresentationDelay:function(t){return ut(t)},type:function(t){return t},timeShiftBufferDepth:function(t){return ut(t)},start:function(t){return ut(t)},width:function(t){return parseInt(t,10)},height:function(t){return parseInt(t,10)},bandwidth:function(t){return parseInt(t,10)},frameRate:function(t){return ct(t)},startNumber:function(t){return parseInt(t,10)},timescale:function(t){return parseInt(t,10)},presentationTimeOffset:function(t){return parseInt(t,10)},duration:function(t){var e=parseInt(t,10);return isNaN(e)?ut(t):e},d:function(t){return parseInt(t,10)},t:function(t){return parseInt(t,10)},r:function(t){return parseInt(t,10)},DEFAULT:function(t){return t}},ft=function(t){return t&&t.attributes?h(t.attributes).reduce(function(t,e){var n=pt[e.name]||pt.DEFAULT;return t[e.name]=n(e.value),t},{}):{}},ht={"urn:uuid:1077efec-c0b2-4d02-ace3-3c1e52e2fb4b":"org.w3.clearkey","urn:uuid:edef8ba9-79d6-4ace-a3c8-27dcd51d21ed":"com.widevine.alpha","urn:uuid:9a04f079-9840-4286-ab92-e65be0885f95":"com.microsoft.playready","urn:uuid:f239e769-efa3-4850-9c16-a903c6932efb":"com.adobe.primetime"},mt=function(t,e){return e.length?f(t.map(function(t){return e.map(function(e){return Object(i.a)(t,lt(e))})})):t},vt=function(t){var e=st(t,"SegmentTemplate")[0],n=st(t,"SegmentList")[0],i=n&&st(n,"SegmentURL").map(function(t){return u({tag:"SegmentURL"},ft(t))}),r=st(t,"SegmentBase")[0],a=n||e,o=a&&st(a,"SegmentTimeline")[0],s=n||r||e,l=s&&st(s,"Initialization")[0],c=e&&ft(e);c&&l?c.initialization=l&&ft(l):c&&c.initialization&&(c.initialization={sourceURL:c.initialization});var d={template:c,segmentTimeline:o&&st(o,"S").map(function(t){return ft(t)}),list:n&&u(ft(n),{segmentUrls:i,initialization:ft(l)}),base:r&&u(ft(r),{initialization:ft(l)})};return Object.keys(d).forEach(function(t){d[t]||delete d[t]}),d},gt=function(t,e,n){return function(i){var r=st(i,"BaseURL"),a=mt(e,r),o=u(t,ft(i)),s=vt(i);return a.map(function(t){return{segmentInfo:u(n,s),attributes:u(o,{baseUrl:t})}})}},yt=function(t){return t.reduce(function(t,e){var n=ft(e);n.schemeIdUri&&(n.schemeIdUri=n.schemeIdUri.toLowerCase());var i=ht[n.schemeIdUri];if(i){t[i]={attributes:n};var r=st(e,"cenc:pssh")[0];if(r){var a=lt(r);t[i].pssh=a&&Object(s.a)(a)}}return t},{})},bt=function(t){if("urn:scte:dash:cc:cea-608:2015"===t.schemeIdUri){return("string"!=typeof t.value?[]:t.value.split(";")).map(function(t){var e,n;if(n=t,/^CC\d=/.test(t)){var i=t.split("=");e=i[0],n=i[1]}else/^CC\d$/.test(t)&&(e=t);return{channel:e,language:n}})}if("urn:scte:dash:cc:cea-708:2015"===t.schemeIdUri){return("string"!=typeof t.value?[]:t.value.split(";")).map(function(t){var e={channel:void 0,language:void 0,aspectRatio:1,easyReader:0,"3D":0};if(/=/.test(t)){var n=t.split("="),i=n[0],r=n[1],a=void 0===r?"":r;e.channel=i,e.language=t,a.split(",").forEach(function(t){var n=t.split(":"),i=n[0],r=n[1];"lang"===i?e.language=r:"er"===i?e.easyReader=Number(r):"war"===i?e.aspectRatio=Number(r):"3D"===i&&(e["3D"]=Number(r))})}else e.language=t;return e.channel&&(e.channel="SERVICE"+e.channel),e})}},wt=function(t,e,n){return function(i){var r=ft(i),a=mt(e,st(i,"BaseURL")),o=st(i,"Role")[0],s={role:ft(o)},l=u(t,r,s),c=st(i,"Accessibility")[0],d=bt(ft(c));d&&(l=u(l,{captionServices:d}));var p=st(i,"Label")[0];if(p&&p.childNodes.length){var h=p.childNodes[0].nodeValue.trim();l=u(l,{label:h})}var m=yt(st(i,"ContentProtection"));Object.keys(m).length&&(l=u(l,{contentProtection:m}));var v=vt(i),g=st(i,"Representation"),y=u(n,v);return f(g.map(gt(l,a,y)))}},_t=function(t,e){return function(n,i){var r=mt(e,st(n.node,"BaseURL")),a=u(t,{periodStart:n.attributes.start});"number"==typeof n.attributes.duration&&(a.periodDuration=n.attributes.duration);var o=st(n.node,"AdaptationSet"),s=vt(n.node);return f(o.map(wt(a,r,s)))}},Tt=function(t){var e=t.attributes,n=t.priorPeriodAttributes,i=t.mpdType;return"number"==typeof e.start?e.start:n&&"number"==typeof n.start&&"number"==typeof n.duration?n.start+n.duration:n||"static"!==i?null:0},xt=function(t,e){void 0===e&&(e={});var n=e,i=n.manifestUri,r=void 0===i?"":i,a=n.NOW,o=void 0===a?Date.now():a,s=n.clientOffset,l=void 0===s?0:s,c=st(t,"Period");if(!c.length)throw new Error(y.INVALID_NUMBER_OF_PERIOD);var u=st(t,"Location"),d=ft(t),p=mt([r],st(t,"BaseURL"));d.type=d.type||"static",d.sourceDuration=d.mediaPresentationDuration||0,d.NOW=o,d.clientOffset=l,u.length&&(d.locations=u.map(lt));var h=[];return c.forEach(function(t,e){var n=ft(t),i=h[e-1];n.start=Tt({attributes:n,priorPeriodAttributes:i?i.attributes:null,mpdType:d.type}),h.push({node:t,attributes:n})}),{locations:d.locations,representationInfo:f(h.map(_t(d,p)))}},kt=function(t){if(""===t)throw new Error(y.DASH_EMPTY_MANIFEST);var e,n,i=new l.DOMParser;try{e=i.parseFromString(t,"application/xml"),n=e&&"MPD"===e.documentElement.tagName?e.documentElement:null}catch(t){}if(!n||n&&n.getElementsByTagName("parsererror").length>0)throw new Error(y.DASH_INVALID_XML);return n},St=function(t){var e=st(t,"UTCTiming")[0];if(!e)return null;var n=ft(e);switch(n.schemeIdUri){case"urn:mpeg:dash:utc:http-head:2014":case"urn:mpeg:dash:utc:http-head:2012":n.method="HEAD";break;case"urn:mpeg:dash:utc:http-xsdate:2014":case"urn:mpeg:dash:utc:http-iso:2014":case"urn:mpeg:dash:utc:http-xsdate:2012":case"urn:mpeg:dash:utc:http-iso:2012":n.method="GET";break;case"urn:mpeg:dash:utc:direct:2014":case"urn:mpeg:dash:utc:direct:2012":n.method="DIRECT",n.value=Date.parse(n.value);break;case"urn:mpeg:dash:utc:http-ntp:2014":case"urn:mpeg:dash:utc:ntp:2014":case"urn:mpeg:dash:utc:sntp:2014":default:throw new Error(y.UNSUPPORTED_UTC_TIMING_SCHEME)}return n},Et=function(t,e){void 0===e&&(e={});var n=xt(kt(t),e),i=ot(n.representationInfo);return G({dashPlaylists:i,locations:n.locations,sidxMapping:e.sidxMapping,previousManifest:e.previousManifest})},Ct=function(t){return St(kt(t))}},function(t,e,n){(function(e){var n;n="undefined"!=typeof window?window:void 0!==e?e:"undefined"!=typeof self?self:{},t.exports=n}).call(e,n(4))},function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=function(t,e,n){e.forEach(function(e){for(var i in t.mediaGroups[e])for(var r in t.mediaGroups[e][i]){var a=t.mediaGroups[e][i][r];n(a,e,i,r)}})}},function(t,e,n){var i=n(30);e.DOMImplementation=i.DOMImplementation,e.XMLSerializer=i.XMLSerializer,e.DOMParser=n(119).DOMParser},function(t,e,n){function i(t){return t.replace(/\r[\n\u0085]/g,"\n").replace(/[\r\u0085\u2028]/g,"\n")}function r(t){this.options=t||{locator:{}}}function a(t,e,n){function i(e){var i=t[e];!i&&a&&(i=2==t.length?function(n){t(e,n)}:t),r[e]=i&&function(t){i("[xmldom "+e+"]\t"+t+l(n))}||function(){}}if(!t){if(e instanceof o)return e;t=e}var r={},a=t instanceof Function;return n=n||{},i("warning"),i("error"),i("fatalError"),r}function o(){this.cdata=!1}function s(t,e){e.lineNumber=t.lineNumber,e.columnNumber=t.columnNumber}function l(t){if(t)return"\n@"+(t.systemId||"")+"#[line:"+t.lineNumber+",col:"+t.columnNumber+"]"}function c(t,e,n){return"string"==typeof t?t.substr(e,n):t.length>=e+n||e?new java.lang.String(t,e,n)+"":t}function u(t,e){t.currentElement?t.currentElement.appendChild(e):t.doc.appendChild(e)}var d=n(11),p=n(30),f=n(120),h=n(121),m=p.DOMImplementation,v=d.NAMESPACE,g=h.ParseError,y=h.XMLReader;r.prototype.parseFromString=function(t,e){var n=this.options,r=new y,s=n.domBuilder||new o,l=n.errorHandler,c=n.locator,u=n.xmlns||{},d=/\/x?html?$/.test(e),p=d?f.HTML_ENTITIES:f.XML_ENTITIES;c&&s.setDocumentLocator(c),r.errorHandler=a(l,s,c),r.domBuilder=n.domBuilder||s,d&&(u[""]=v.HTML),u.xml=u.xml||v.XML;var h=n.normalizeLineEndings||i;return t&&"string"==typeof t?r.parse(h(t),u,p):r.errorHandler.error("invalid doc source"),s.doc},o.prototype={startDocument:function(){this.doc=(new m).createDocument(null,null,null),this.locator&&(this.doc.documentURI=this.locator.systemId)},startElement:function(t,e,n,i){var r=this.doc,a=r.createElementNS(t,n||e),o=i.length;u(this,a),this.currentElement=a,this.locator&&s(this.locator,a);for(var l=0;l<o;l++){var t=i.getURI(l),c=i.getValue(l),n=i.getQName(l),d=r.createAttributeNS(t,n);this.locator&&s(i.getLocator(l),d),d.value=d.nodeValue=c,a.setAttributeNode(d)}},endElement:function(t,e,n){var i=this.currentElement;i.tagName;this.currentElement=i.parentNode},startPrefixMapping:function(t,e){},endPrefixMapping:function(t){},processingInstruction:function(t,e){var n=this.doc.createProcessingInstruction(t,e);this.locator&&s(this.locator,n),u(this,n)},ignorableWhitespace:function(t,e,n){},characters:function(t,e,n){if(t=c.apply(this,arguments)){if(this.cdata)var i=this.doc.createCDATASection(t);else var i=this.doc.createTextNode(t);this.currentElement?this.currentElement.appendChild(i):/^\s*$/.test(t)&&this.doc.appendChild(i),this.locator&&s(this.locator,i)}},skippedEntity:function(t){},endDocument:function(){this.doc.normalize()},setDocumentLocator:function(t){(this.locator=t)&&(t.lineNumber=0)},comment:function(t,e,n){t=c.apply(this,arguments);var i=this.doc.createComment(t);this.locator&&s(this.locator,i),u(this,i)},startCDATA:function(){this.cdata=!0},endCDATA:function(){this.cdata=!1},startDTD:function(t,e,n){var i=this.doc.implementation;if(i&&i.createDocumentType){var r=i.createDocumentType(t,e,n);this.locator&&s(this.locator,r),u(this,r),this.doc.doctype=r}},warning:function(t){console.warn("[xmldom warning]\t"+t,l(this.locator))},error:function(t){console.error("[xmldom error]\t"+t,l(this.locator))},fatalError:function(t){throw new g(t,this.locator)}},"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,function(t){o.prototype[t]=function(){return null}}),e.__DOMHandler=o,e.normalizeLineEndings=i,e.DOMParser=r},function(t,e,n){var i=n(11).freeze;e.XML_ENTITIES=i({amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}),e.HTML_ENTITIES=i({lt:"<",gt:">",amp:"&",quot:'"',apos:"'",Agrave:"À",Aacute:"Á",Acirc:"Â",Atilde:"Ã",Auml:"Ä",Aring:"Å",AElig:"Æ",Ccedil:"Ç",Egrave:"È",Eacute:"É",Ecirc:"Ê",Euml:"Ë",Igrave:"Ì",Iacute:"Í",Icirc:"Î",Iuml:"Ï",ETH:"Ð",Ntilde:"Ñ",Ograve:"Ò",Oacute:"Ó",Ocirc:"Ô",Otilde:"Õ",Ouml:"Ö",Oslash:"Ø",Ugrave:"Ù",Uacute:"Ú",Ucirc:"Û",Uuml:"Ü",Yacute:"Ý",THORN:"Þ",szlig:"ß",agrave:"à",aacute:"á",acirc:"â",atilde:"ã",auml:"ä",aring:"å",aelig:"æ",ccedil:"ç",egrave:"è",eacute:"é",ecirc:"ê",euml:"ë",igrave:"ì",iacute:"í",icirc:"î",iuml:"ï",eth:"ð",ntilde:"ñ",ograve:"ò",oacute:"ó",ocirc:"ô",otilde:"õ",ouml:"ö",oslash:"ø",ugrave:"ù",uacute:"ú",ucirc:"û",uuml:"ü",yacute:"ý",thorn:"þ",yuml:"ÿ",nbsp:" ",iexcl:"¡",cent:"¢",pound:"£",curren:"¤",yen:"¥",brvbar:"¦",sect:"§",uml:"¨",copy:"©",ordf:"ª",laquo:"«",not:"¬",shy:"",reg:"®",macr:"¯",deg:"°",plusmn:"±",sup2:"²",sup3:"³",acute:"´",micro:"µ",para:"¶",middot:"·",cedil:"¸",sup1:"¹",ordm:"º",raquo:"»",frac14:"¼",frac12:"½",frac34:"¾",iquest:"¿",times:"×",divide:"÷",forall:"∀",part:"∂",exist:"∃",empty:"∅",nabla:"∇",isin:"∈",notin:"∉",ni:"∋",prod:"∏",sum:"∑",minus:"−",lowast:"∗",radic:"√",prop:"∝",infin:"∞",ang:"∠",and:"∧",or:"∨",cap:"∩",cup:"∪",int:"∫",there4:"∴",sim:"∼",cong:"≅",asymp:"≈",ne:"≠",equiv:"≡",le:"≤",ge:"≥",sub:"⊂",sup:"⊃",nsub:"⊄",sube:"⊆",supe:"⊇",oplus:"⊕",otimes:"⊗",perp:"⊥",sdot:"⋅",Alpha:"Α",Beta:"Β",Gamma:"Γ",Delta:"Δ",Epsilon:"Ε",Zeta:"Ζ",Eta:"Η",Theta:"Θ",Iota:"Ι",Kappa:"Κ",Lambda:"Λ",Mu:"Μ",Nu:"Ν",Xi:"Ξ",Omicron:"Ο",Pi:"Π",Rho:"Ρ",Sigma:"Σ",Tau:"Τ",Upsilon:"Υ",Phi:"Φ",Chi:"Χ",Psi:"Ψ",Omega:"Ω",alpha:"α",beta:"β",gamma:"γ",delta:"δ",epsilon:"ε",zeta:"ζ",eta:"η",theta:"θ",iota:"ι",kappa:"κ",lambda:"λ",mu:"μ",nu:"ν",xi:"ξ",omicron:"ο",pi:"π",rho:"ρ",sigmaf:"ς",sigma:"σ",tau:"τ",upsilon:"υ",phi:"φ",chi:"χ",psi:"ψ",omega:"ω",thetasym:"ϑ",upsih:"ϒ",piv:"ϖ",OElig:"Œ",oelig:"œ",Scaron:"Š",scaron:"š",Yuml:"Ÿ",fnof:"ƒ",circ:"ˆ",tilde:"˜",ensp:" ",emsp:" ",thinsp:" ",zwnj:"",zwj:"",lrm:"",rlm:"",ndash:"–",mdash:"—",lsquo:"‘",rsquo:"’",sbquo:"‚",ldquo:"“",rdquo:"”",bdquo:"„",dagger:"†",Dagger:"‡",bull:"•",hellip:"…",permil:"‰",prime:"′",Prime:"″",lsaquo:"‹",rsaquo:"›",oline:"‾",euro:"€",trade:"™",larr:"←",uarr:"↑",rarr:"→",darr:"↓",harr:"↔",crarr:"↵",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",loz:"◊",spades:"♠",clubs:"♣",hearts:"♥",diams:"♦"}),e.entityMap=e.HTML_ENTITIES},function(t,e,n){function i(t,e){this.message=t,this.locator=e,Error.captureStackTrace&&Error.captureStackTrace(this,i)}function r(){}function a(t,e,n,r,a){function d(t){if(t>65535){t-=65536;var e=55296+(t>>10),n=56320+(1023&t);return String.fromCharCode(e,n)}return String.fromCharCode(t)}function m(t){var e=t.slice(1,-1);return Object.hasOwnProperty.call(n,e)?n[e]:"#"===e.charAt(0)?d(parseInt(e.substr(1).replace("x","0x"))):(a.error("entity not found:"+t),t)}function g(e){if(e>S){var n=t.substring(S,e).replace(/&#?\w+;/g,m);T&&y(S),r.characters(n,0,e-S),S=e}}function y(e,n){for(;e>=w&&(n=_.exec(t));)b=n.index,w=b+n[0].length,T.lineNumber++;T.columnNumber=e-b+1}for(var b=0,w=0,_=/.*(?:\r\n?|\n)|.*$/g,T=r.locator,x=[{currentNSMap:e}],k={},S=0;;){try{var E=t.indexOf("<",S);if(E<0){if(!t.substr(S).match(/^\s*$/)){var C=r.doc,A=C.createTextNode(t.substr(S));C.appendChild(A),r.currentElement=A}return}switch(E>S&&g(E),t.charAt(E+1)){case"/":var I=t.indexOf(">",E+3),O=t.substring(E+2,I).replace(/[ \t\n\r]+$/g,""),j=x.pop();I<0?(O=t.substring(E+2).replace(/[\s<].*/,""),a.error("end tag name: "+O+" is not complete:"+j.tagName),I=E+1+O.length):O.match(/\s</)&&(O=O.replace(/[\s<].*/,""),a.error("end tag name: "+O+" maybe not complete"),I=E+1+O.length);var P=j.localNSMap,L=j.tagName==O;if(L||j.tagName&&j.tagName.toLowerCase()==O.toLowerCase()){if(r.endElement(j.uri,j.localName,O),P)for(var D in P)Object.prototype.hasOwnProperty.call(P,D)&&r.endPrefixMapping(D);L||a.fatalError("end tag name: "+O+" is not match the current start tagName:"+j.tagName)}else x.push(j);I++;break;case"?":T&&y(E),I=f(t,E,r);break;case"!":T&&y(E),I=p(t,E,r,a);break;default:T&&y(E);var M=new h,N=x[x.length-1].currentNSMap,I=s(t,E,M,N,m,a),R=M.length;if(!M.closed&&u(t,I,M.tagName,k)&&(M.closed=!0,n.nbsp||a.warning("unclosed xml attribute")),T&&R){for(var B=o(T,{}),U=0;U<R;U++){var F=M[U];y(F.offset),F.locator=o(T,{})}r.locator=B,l(M,r,N)&&x.push(M),r.locator=T}else l(M,r,N)&&x.push(M);v.isHTML(M.uri)&&!M.closed?I=c(t,I,M.tagName,m,r):I++}}catch(t){if(t instanceof i)throw t;a.error("element parse error: "+t),I=-1}I>S?S=I:g(Math.max(E,S)+1)}}function o(t,e){return e.lineNumber=t.lineNumber,e.columnNumber=t.columnNumber,e}function s(t,e,n,i,r,a){function o(t,e,i){n.attributeNames.hasOwnProperty(t)&&a.fatalError("Attribute "+t+" redefined"),n.addValue(t,e.replace(/[\t\n\r]/g," ").replace(/&#?\w+;/g,r),i)}for(var s,l,c=++e,u=w;;){var d=t.charAt(c);switch(d){case"=":if(u===_)s=t.slice(e,c),u=x;else{if(u!==T)throw new Error("attribute equal must after attrName");u=x}break;case"'":case'"':if(u===x||u===_){if(u===_&&(a.warning('attribute value must after "="'),s=t.slice(e,c)),e=c+1,!((c=t.indexOf(d,e))>0))throw new Error("attribute value no end '"+d+"' match");l=t.slice(e,c),o(s,l,e-1),u=S}else{if(u!=k)throw new Error('attribute value must after "="');l=t.slice(e,c),o(s,l,e),a.warning('attribute "'+s+'" missed start quot('+d+")!!"),e=c+1,u=S}break;case"/":switch(u){case w:n.setTagName(t.slice(e,c));case S:case E:case C:u=C,n.closed=!0;case k:case _:case T:break;default:throw new Error("attribute invalid close char('/')")}break;case"":return a.error("unexpected end of input"),u==w&&n.setTagName(t.slice(e,c)),c;case">":switch(u){case w:n.setTagName(t.slice(e,c));case S:case E:case C:break;case k:case _:l=t.slice(e,c),"/"===l.slice(-1)&&(n.closed=!0,l=l.slice(0,-1));case T:u===T&&(l=s),u==k?(a.warning('attribute "'+l+'" missed quot(")!'),o(s,l,e)):(v.isHTML(i[""])&&l.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+l+'" missed value!! "'+l+'" instead!!'),o(l,l,e));break;case x:throw new Error("attribute value missed!!")}return c;case"":d=" ";default:if(d<=" ")switch(u){case w:n.setTagName(t.slice(e,c)),u=E;break;case _:s=t.slice(e,c),u=T;break;case k:var l=t.slice(e,c);a.warning('attribute "'+l+'" missed quot(")!!'),o(s,l,e);case S:u=E}else switch(u){case T:n.tagName;v.isHTML(i[""])&&s.match(/^(?:disabled|checked|selected)$/i)||a.warning('attribute "'+s+'" missed value!! "'+s+'" instead2!!'),o(s,s,e),e=c,u=_;break;case S:a.warning('attribute space is required"'+s+'"!!');case E:u=_,e=c;break;case x:u=k,e=c;break;case C:throw new Error("elements closed character '/' and '>' must be connected to")}}c++}}function l(t,e,n){for(var i=t.tagName,r=null,a=t.length;a--;){var o=t[a],s=o.qName,l=o.value,c=s.indexOf(":");if(c>0)var u=o.prefix=s.slice(0,c),p=s.slice(c+1),f="xmlns"===u&&p;else p=s,u=null,f="xmlns"===s&&"";o.localName=p,!1!==f&&(null==r&&(r={},d(n,n={})),n[f]=r[f]=l,o.uri=v.XMLNS,e.startPrefixMapping(f,l))}for(var a=t.length;a--;){o=t[a];var u=o.prefix;u&&("xml"===u&&(o.uri=v.XML),"xmlns"!==u&&(o.uri=n[u||""]))}var c=i.indexOf(":");c>0?(u=t.prefix=i.slice(0,c),p=t.localName=i.slice(c+1)):(u=null,p=t.localName=i);var h=t.uri=n[u||""];if(e.startElement(h,p,i,t),!t.closed)return t.currentNSMap=n,t.localNSMap=r,!0;if(e.endElement(h,p,i),r)for(u in r)Object.prototype.hasOwnProperty.call(r,u)&&e.endPrefixMapping(u)}function c(t,e,n,i,r){if(/^(?:script|textarea)$/i.test(n)){var a=t.indexOf("</"+n+">",e),o=t.substring(e+1,a);if(/[&<]/.test(o))return/^script$/i.test(n)?(r.characters(o,0,o.length),a):(o=o.replace(/&#?\w+;/g,i),r.characters(o,0,o.length),a)}return e+1}function u(t,e,n,i){var r=i[n];return null==r&&(r=t.lastIndexOf("</"+n+">"),r<e&&(r=t.lastIndexOf("</"+n)),i[n]=r),r<e}function d(t,e){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}function p(t,e,n,i){switch(t.charAt(e+2)){case"-":if("-"===t.charAt(e+3)){var r=t.indexOf("--\x3e",e+4);return r>e?(n.comment(t,e+4,r-e-4),r+3):(i.error("Unclosed comment"),-1)}return-1;default:if("CDATA["==t.substr(e+3,6)){var r=t.indexOf("]]>",e+9);return n.startCDATA(),n.characters(t,e+9,r-e-9),n.endCDATA(),r+3}var a=m(t,e),o=a.length;if(o>1&&/!doctype/i.test(a[0][0])){var s=a[1][0],l=!1,c=!1;o>3&&(/^public$/i.test(a[2][0])?(l=a[3][0],c=o>4&&a[4][0]):/^system$/i.test(a[2][0])&&(c=a[3][0]));var u=a[o-1];return n.startDTD(s,l,c),n.endDTD(),u.index+u[0].length}}return-1}function f(t,e,n){var i=t.indexOf("?>",e);if(i){var r=t.substring(e,i).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);if(r){r[0].length;return n.processingInstruction(r[1],r[2]),i+2}return-1}return-1}function h(){this.attributeNames={}}function m(t,e){var n,i=[],r=/'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;for(r.lastIndex=e,r.exec(t);n=r.exec(t);)if(i.push(n),n[1])return i}var v=n(11).NAMESPACE,g=/[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,y=new RegExp("[\\-\\.0-9"+g.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"),b=new RegExp("^"+g.source+y.source+"*(?::"+g.source+y.source+"*)?$"),w=0,_=1,T=2,x=3,k=4,S=5,E=6,C=7;i.prototype=new Error,i.prototype.name=i.name,r.prototype={parse:function(t,e,n){var i=this.domBuilder;i.startDocument(),d(e,e={}),a(t,e,n,i,this.errorHandler),i.endDocument()}},h.prototype={setTagName:function(t){if(!b.test(t))throw new Error("invalid tagName:"+t);this.tagName=t},addValue:function(t,e,n){if(!b.test(t))throw new Error("invalid attribute:"+t);this.attributeNames[t]=this.length,this[this.length++]={qName:t,value:e,offset:n}},length:0,getLocalName:function(t){return this[t].localName},getLocator:function(t){return this[t].locator},getQName:function(t){return this[t].qName},getURI:function(t){return this[t].uri},getValue:function(t){return this[t].value}},e.XMLReader=r,e.ParseError=i},function(t,e,n){var i=n(123).getUint64,r=function(t){var e=new DataView(t.buffer,t.byteOffset,t.byteLength),n={version:t[0],flags:new Uint8Array(t.subarray(1,4)),references:[],referenceId:e.getUint32(4),timescale:e.getUint32(8)},r=12;0===n.version?(n.earliestPresentationTime=e.getUint32(r),n.firstOffset=e.getUint32(r+4),r+=8):(n.earliestPresentationTime=i(t.subarray(r)),n.firstOffset=i(t.subarray(r+8)),r+=16),r+=2;var a=e.getUint16(r);for(r+=2;a>0;r+=12,a--)n.references.push({referenceType:(128&t[r])>>>7,referencedSize:2147483647&e.getUint32(r),subsegmentDuration:e.getUint32(r+4),startsWithSap:!!(128&t[r+8]),sapType:(112&t[r+8])>>>4,sapDeltaTime:268435455&e.getUint32(r+8)});return n};t.exports=r},function(t,e){var n=Math.pow(2,32),i=function(t){var e,i=new DataView(t.buffer,t.byteOffset,t.byteLength);return i.getBigUint64?(e=i.getBigUint64(0),e<Number.MAX_SAFE_INTEGER?Number(e):e):i.getUint32(0)*n+i.getUint32(4)};t.exports={getUint64:i,MAX_UINT32:n}},function(t,e,n){"use strict";n.d(e,"a",function(){return p}),n.d(e,"b",function(){return f});var i=n(6),r=n(125),a=n(127),o=n(31),s=n(128),l={webm:Object(i.k)([119,101,98,109]),matroska:Object(i.k)([109,97,116,114,111,115,107,97]),flac:Object(i.k)([102,76,97,67]),ogg:Object(i.k)([79,103,103,83]),ac3:Object(i.k)([11,119]),riff:Object(i.k)([82,73,70,70]),avi:Object(i.k)([65,86,73]),wav:Object(i.k)([87,65,86,69]),"3gp":Object(i.k)([102,116,121,112,51,103]),mp4:Object(i.k)([102,116,121,112]),fmp4:Object(i.k)([115,116,121,112]),mov:Object(i.k)([102,116,121,112,113,116]),moov:Object(i.k)([109,111,111,118]),moof:Object(i.k)([109,111,111,102])},c={aac:function(t){var e=Object(o.a)(t);return Object(i.a)(t,[255,16],{offset:e,mask:[255,22]})},mp3:function(t){var e=Object(o.a)(t);return Object(i.a)(t,[255,2],{offset:e,mask:[255,6]})},webm:function(t){var e=Object(a.b)(t,[a.a.EBML,a.a.DocType])[0];return Object(i.a)(e,l.webm)},mkv:function(t){var e=Object(a.b)(t,[a.a.EBML,a.a.DocType])[0];return Object(i.a)(e,l.matroska)},mp4:function(t){return!c["3gp"](t)&&!c.mov(t)&&(!(!Object(i.a)(t,l.mp4,{offset:4})&&!Object(i.a)(t,l.fmp4,{offset:4}))||(!(!Object(i.a)(t,l.moof,{offset:4})&&!Object(i.a)(t,l.moov,{offset:4}))||void 0))},mov:function(t){return Object(i.a)(t,l.mov,{offset:4})},"3gp":function(t){return Object(i.a)(t,l["3gp"],{offset:4})},ac3:function(t){var e=Object(o.a)(t);return Object(i.a)(t,l.ac3,{offset:e})},ts:function(t){if(t.length<189&&t.length>=1)return 71===t[0];for(var e=0;e+188<t.length&&e<188;){if(71===t[e]&&71===t[e+188])return!0;e+=1}return!1},flac:function(t){var e=Object(o.a)(t);return Object(i.a)(t,l.flac,{offset:e})},ogg:function(t){return Object(i.a)(t,l.ogg)},avi:function(t){return Object(i.a)(t,l.riff)&&Object(i.a)(t,l.avi,{offset:8})},wav:function(t){return Object(i.a)(t,l.riff)&&Object(i.a)(t,l.wav,{offset:8})},h264:function(t){return Object(s.a)(t,7,3).length},h265:function(t){return Object(s.b)(t,[32,33],3).length}},u=Object.keys(c).filter(function(t){return"ts"!==t&&"h264"!==t&&"h265"!==t}).concat(["ts","h264","h265"]);u.forEach(function(t){var e=c[t];c[t]=function(t){return e(Object(i.k)(t))}});var d=c,p=function(t){t=Object(i.k)(t);for(var e=0;e<u.length;e++){var n=u[e];if(d[n](t))return n}return""},f=function(t){return Object(r.a)(t,["moof"]).length>0}},function(t,e,n){"use strict";n.d(e,"a",function(){return l});var i,r=n(6),a=(n(32),n(126),function(t){return"string"==typeof t?Object(r.h)(t):t}),o=function(t){return Array.isArray(t)?t.map(function(t){return a(t)}):[a(t)]},s=function(t){t=Object(r.k)(t);for(var e=[],n=0;t.length>n;){var a=t[n],o=0,s=0;s++;var l=t[s];for(s++;128&l;)o=(127&l)<<7,l=t[s],s++;o+=127&l;for(var c=0;c<i.length;c++){var u=i[c],d=u.id,p=u.parser;if(a===d){e.push(p(t.subarray(s,s+o)));break}}n+=o+s}return e};i=[{id:3,parser:function(t){var e={tag:3,id:t[0]<<8|t[1],flags:t[2],size:3,dependsOnEsId:0,ocrEsId:0,descriptors:[],url:""};if(128&e.flags&&(e.dependsOnEsId=t[e.size]<<8|t[e.size+1],e.size+=2),64&e.flags){var n=t[e.size];e.url=Object(r.c)(t.subarray(e.size+1,e.size+1+n)),e.size+=n}return 32&e.flags&&(e.ocrEsId=t[e.size]<<8|t[e.size+1],e.size+=2),e.descriptors=s(t.subarray(e.size))||[],e}},{id:4,parser:function(t){return{tag:4,oti:t[0],streamType:t[1],bufferSize:t[2]<<16|t[3]<<8|t[4],maxBitrate:t[5]<<24|t[6]<<16|t[7]<<8|t[8],avgBitrate:t[9]<<24|t[10]<<16|t[11]<<8|t[12],descriptors:s(t.subarray(13))}}},{id:5,parser:function(t){return{tag:5,bytes:t}}},{id:6,parser:function(t){return{tag:6,bytes:t}}}];var l=function t(e,n,i){void 0===i&&(i=!1),n=o(n),e=Object(r.k)(e);var a=[];if(!n.length)return a;for(var s=0;s<e.length;){var l=(e[s]<<24|e[s+1]<<16|e[s+2]<<8|e[s+3])>>>0,c=e.subarray(s+4,s+8);if(0===l)break;var u=s+l;if(u>e.length){if(i)break;u=e.length}var d=e.subarray(s+8,u);Object(r.a)(c,n[0])&&(1===n.length?a.push(d):a.push.apply(a,t(d,n.slice(1),i))),s=u}return a}},function(t,e,n){"use strict";n.d(e,"a",function(){return i});var i=(new Uint8Array([79,112,117,115,72,101,97,100]),function(t){var e=new DataView(t.buffer,t.byteOffset,t.byteLength),n=e.getUint8(0),i=0!==n,r={version:n,channels:e.getUint8(1),preSkip:e.getUint16(2,i),sampleRate:e.getUint32(4,i),outputGain:e.getUint16(8,i),channelMappingFamily:e.getUint8(10)};if(r.channelMappingFamily>0&&t.length>10){r.streamCount=e.getUint8(11),r.twoChannelStreamCount=e.getUint8(12),r.channelMapping=[];for(var a=0;a<r.channels;a++)r.channelMapping.push(e.getUint8(13+a))}return r})},function(t,e,n){"use strict";n.d(e,"a",function(){return r}),n.d(e,"b",function(){return d});var i=n(6),r=(n(32),{EBML:Object(i.k)([26,69,223,163]),DocType:Object(i.k)([66,130]),Segment:Object(i.k)([24,83,128,103]),SegmentInfo:Object(i.k)([21,73,169,102]),Tracks:Object(i.k)([22,84,174,107]),Track:Object(i.k)([174]),TrackNumber:Object(i.k)([215]),DefaultDuration:Object(i.k)([35,227,131]),TrackEntry:Object(i.k)([174]),TrackType:Object(i.k)([131]),FlagDefault:Object(i.k)([136]),CodecID:Object(i.k)([134]),CodecPrivate:Object(i.k)([99,162]),VideoTrack:Object(i.k)([224]),AudioTrack:Object(i.k)([225]),Cluster:Object(i.k)([31,67,182,117]),Timestamp:Object(i.k)([231]),TimestampScale:Object(i.k)([42,215,177]),BlockGroup:Object(i.k)([160]),BlockDuration:Object(i.k)([155]),Block:Object(i.k)([161]),SimpleBlock:Object(i.k)([163])}),a=[128,64,32,16,8,4,2,1],o=function(t){for(var e=1,n=0;n<a.length&&!(t&a[n]);n++)e++;return e},s=function(t,e,n,r){void 0===n&&(n=!0),void 0===r&&(r=!1);var s=o(t[e]),l=t.subarray(e,e+s);return n&&(l=Array.prototype.slice.call(t,e,e+s),l[0]^=a[s-1]),{length:s,value:Object(i.b)(l,{signed:r}),bytes:l}},l=function t(e){return"string"==typeof e?e.match(/.{1,2}/g).map(function(e){return t(e)}):"number"==typeof e?Object(i.f)(e):e},c=function(t){return Array.isArray(t)?t.map(function(t){return l(t)}):[l(t)]},u=function t(e,n,r){if(r>=n.length)return n.length;var a=s(n,r,!1);if(Object(i.a)(e.bytes,a.bytes))return r;var o=s(n,r+a.length);return t(e,n,r+o.length+o.value+a.length)},d=function t(e,n){n=c(n),e=Object(i.k)(e);var r=[];if(!n.length)return r;for(var a=0;a<e.length;){var o=s(e,a,!1),l=s(e,a+o.length),d=a+o.length+l.length;127===l.value&&(l.value=u(o,e,d),l.value!==e.length&&(l.value-=d));var p=d+l.value>e.length?e.length:d+l.value,f=e.subarray(d,p);Object(i.a)(n[0],o.bytes)&&(1===n.length?r.push(f):r=r.concat(t(f,n.slice(1))));a+=o.length+l.length+f.length}return r}},function(t,e,n){"use strict";n.d(e,"a",function(){return c}),n.d(e,"b",function(){return u});var i=n(6),r=Object(i.k)([0,0,0,1]),a=Object(i.k)([0,0,1]),o=Object(i.k)([0,0,3]),s=function(t){for(var e=[],n=1;n<t.length-2;)Object(i.a)(t.subarray(n,n+3),o)&&(e.push(n+2),n++),n++;if(0===e.length)return t;var r=t.length-e.length,a=new Uint8Array(r),s=0;for(n=0;n<r;s++,n++)s===e[0]&&(s++,e.shift()),a[n]=t[s];return a},l=function(t,e,n,o){void 0===o&&(o=1/0),t=Object(i.k)(t),n=[].concat(n);for(var l,c=0,u=0;c<t.length&&(u<o||l);){var d=void 0;if(Object(i.a)(t.subarray(c),r)?d=4:Object(i.a)(t.subarray(c),a)&&(d=3),d){if(u++,l)return s(t.subarray(l,c));var p=void 0;"h264"===e?p=31&t[c+d]:"h265"===e&&(p=t[c+d]>>1&63),-1!==n.indexOf(p)&&(l=c+d),c+=d+("h264"===e?1:2)}else c++}return t.subarray(0,0)},c=function(t,e,n){return l(t,"h264",e,n)},u=function(t,e,n){return l(t,"h265",e,n)}},function(t,e){var n,i,r,a,o,s,l;n=function(t){return 9e4*t},i=function(t,e){return t*e},r=function(t){return t/9e4},a=function(t,e){return t/e},o=function(t,e){return n(a(t,e))},s=function(t,e){return i(r(t),e)},l=function(t,e,n){return r(n?t:t-e)},t.exports={ONE_SECOND_IN_TS:9e4,secondsToVideoTs:n,secondsToAudioTs:i,videoTsToSeconds:r,audioTsToSeconds:a,audioTsToVideoTs:o,videoTsToAudioTs:s,metadataTsToSeconds:l}},function(t,e,n){function i(e){var n="function"==typeof Map?new Map:void 0;return t.exports=i=function(t){function e(){return s(t,arguments,r(this).constructor)}if(null===t||!o(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==n){if(n.has(t))return n.get(t);n.set(t,e)}return e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),a(e,t)},t.exports.__esModule=!0,t.exports.default=t.exports,i(e)}var r=n(131),a=n(9),o=n(132),s=n(27);t.exports=i,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function n(e){return t.exports=n=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},t.exports.__esModule=!0,t.exports.default=t.exports,n(e)}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e){function n(t){return-1!==Function.toString.call(t).indexOf("[native code]")}t.exports=n,t.exports.__esModule=!0,t.exports.default=t.exports},function(t,e,n){var i=n(134);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("2480945a",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder,.vjs-icon-play{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder:before,.vjs-icon-play:before{content:"\\F101"}.vjs-icon-play-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-play-circle:before{content:"\\F102"}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,.vjs-icon-pause{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,.vjs-icon-pause:before{content:"\\F103"}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,.vjs-icon-volume-mute{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,.vjs-icon-volume-mute:before{content:"\\F104"}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,.vjs-icon-volume-low{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,.vjs-icon-volume-low:before{content:"\\F105"}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,.vjs-icon-volume-mid{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,.vjs-icon-volume-mid:before{content:"\\F106"}.video-js .vjs-mute-control .vjs-icon-placeholder,.vjs-icon-volume-high{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-mute-control .vjs-icon-placeholder:before,.vjs-icon-volume-high:before{content:"\\F107"}.video-js .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-enter:before{content:"\\F108"}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-exit:before{content:"\\F109"}.vjs-icon-square{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-square:before{content:"\\F10A"}.vjs-icon-spinner{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-spinner:before{content:"\\F10B"}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subtitles-button .vjs-icon-placeholder,.vjs-icon-subtitles{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,.vjs-icon-subtitles:before{content:"\\F10C"}.video-js .vjs-captions-button .vjs-icon-placeholder,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-captions{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-captions-button .vjs-icon-placeholder:before,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-captions:before{content:"\\F10D"}.video-js .vjs-chapters-button .vjs-icon-placeholder,.vjs-icon-chapters{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-chapters-button .vjs-icon-placeholder:before,.vjs-icon-chapters:before{content:"\\F10E"}.vjs-icon-share{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-share:before{content:"\\F10F"}.vjs-icon-cog{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-cog:before{content:"\\F110"}.video-js .vjs-play-progress,.video-js .vjs-volume-level,.vjs-icon-circle,.vjs-seek-to-live-control .vjs-icon-placeholder{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-progress:before,.video-js .vjs-volume-level:before,.vjs-icon-circle:before,.vjs-seek-to-live-control .vjs-icon-placeholder:before{content:"\\F111"}.vjs-icon-circle-outline{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-outline:before{content:"\\F112"}.vjs-icon-circle-inner-circle{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-circle-inner-circle:before{content:"\\F113"}.vjs-icon-hd{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-hd:before{content:"\\F114"}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,.vjs-icon-cancel{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,.vjs-icon-cancel:before{content:"\\F115"}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,.vjs-icon-replay{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,.vjs-icon-replay:before{content:"\\F116"}.vjs-icon-facebook{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-facebook:before{content:"\\F117"}.vjs-icon-gplus{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-gplus:before{content:"\\F118"}.vjs-icon-linkedin{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-linkedin:before{content:"\\F119"}.vjs-icon-twitter{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-twitter:before{content:"\\F11A"}.vjs-icon-tumblr{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-tumblr:before{content:"\\F11B"}.vjs-icon-pinterest{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-pinterest:before{content:"\\F11C"}.video-js .vjs-descriptions-button .vjs-icon-placeholder,.vjs-icon-audio-description{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,.vjs-icon-audio-description:before{content:"\\F11D"}.video-js .vjs-audio-button .vjs-icon-placeholder,.vjs-icon-audio{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-audio-button .vjs-icon-placeholder:before,.vjs-icon-audio:before{content:"\\F11E"}.vjs-icon-next-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-next-item:before{content:"\\F11F"}.vjs-icon-previous-item{font-family:VideoJS;font-weight:400;font-style:normal}.vjs-icon-previous-item:before{content:"\\F120"}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-enter{font-family:VideoJS;font-weight:400;font-style:normal}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-enter:before{content:"\\F121"}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-exit{font-family:VideoJS;font-weight:400;font-style:normal}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-exit:before{content:"\\F122"}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;background-color:#000;position:relative;padding:0;font-size:10px;line-height:1;font-weight:400;font-style:normal;font-family:Arial,Helvetica,sans-serif;word-break:normal}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100%!important;height:100%!important}.video-js[tabindex="-1"]{outline:none}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin:0}.video-js.vjs-1-1,.video-js.vjs-4-3,.video-js.vjs-9-16,.video-js.vjs-16-9,.video-js.vjs-fluid{width:100%;max-width:100%}.video-js.vjs-1-1:not(.vjs-audio-only-mode),.video-js.vjs-4-3:not(.vjs-audio-only-mode),.video-js.vjs-9-16:not(.vjs-audio-only-mode),.video-js.vjs-16-9:not(.vjs-audio-only-mode),.video-js.vjs-fluid:not(.vjs-audio-only-mode){height:0}.video-js.vjs-16-9:not(.vjs-audio-only-mode){padding-top:56.25%}.video-js.vjs-4-3:not(.vjs-audio-only-mode){padding-top:75%}.video-js.vjs-9-16:not(.vjs-audio-only-mode){padding-top:177.7777777778%}.video-js.vjs-1-1:not(.vjs-audio-only-mode){padding-top:100%}.video-js.vjs-fill:not(.vjs-audio-only-mode),.video-js .vjs-tech{width:100%;height:100%}.video-js .vjs-tech{position:absolute;top:0;left:0}.video-js.vjs-audio-only-mode .vjs-tech{display:none}body.vjs-full-window{padding:0;margin:0;height:100%}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen:not(.vjs-ios-native-fs){width:100%!important;height:100%!important;padding-top:0!important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none!important}.vjs-disabled{opacity:.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block!important;opacity:1!important;visibility:visible!important}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial,Helvetica,sans-serif;text-align:center;width:300px;height:150px;margin:0 auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66a8cc}.video-js .vjs-big-play-button{font-size:3em;line-height:1.5em;height:1.63332em;width:3em;display:block;position:absolute;top:10px;left:10px;padding:0;cursor:pointer;opacity:1;border:.06666em solid #fff;background-color:#2b333f;background-color:rgba(43,51,63,.7);border-radius:.3em;transition:all .4s}.vjs-big-play-centered .vjs-big-play-button{top:50%;left:50%;margin-top:-.81666em;margin-left:-1.5em}.video-js .vjs-big-play-button:focus,.video-js:hover .vjs-big-play-button{border-color:#fff;background-color:#73859f;background-color:rgba(115,133,159,.5);transition:all 0s}.vjs-controls-disabled .vjs-big-play-button,.vjs-error .vjs-big-play-button,.vjs-has-started .vjs-big-play-button,.vjs-using-native-controls .vjs-big-play-button{display:none}.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button{display:block}.video-js button{background:none;border:none;color:inherit;display:inline-block;font-size:inherit;line-height:inherit;text-transform:none;text-decoration:none;transition:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vjs-control .vjs-button{width:100%;height:100%}.video-js .vjs-control.vjs-close-button{cursor:pointer;height:3em;position:absolute;right:0;top:.5em;z-index:2}.video-js .vjs-modal-dialog{background:rgba(0,0,0,.8);background:linear-gradient(180deg,rgba(0,0,0,.8),hsla(0,0%,100%,0));overflow:auto}.video-js .vjs-modal-dialog>*{box-sizing:border-box}.vjs-modal-dialog .vjs-modal-dialog-content{font-size:1.2em;line-height:1.5;padding:20px 24px;z-index:1}.vjs-menu-button{cursor:pointer}.vjs-menu-button.vjs-disabled{cursor:default}.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu{display:none}.vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;font-family:Arial,Helvetica,sans-serif;overflow:auto}.vjs-menu .vjs-menu-content>*{box-sizing:border-box}.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu{display:none}.vjs-menu li{list-style:none;margin:0;padding:.2em 0;line-height:1.4em;font-size:1.2em;text-align:center;text-transform:lowercase}.js-focus-visible .vjs-menu li.vjs-menu-item:hover,.vjs-menu li.vjs-menu-item:focus,.vjs-menu li.vjs-menu-item:hover{background-color:#73859f;background-color:rgba(115,133,159,.5)}.js-focus-visible .vjs-menu li.vjs-selected:hover,.vjs-menu li.vjs-selected,.vjs-menu li.vjs-selected:focus,.vjs-menu li.vjs-selected:hover{background-color:#fff;color:#2b333f}.js-focus-visible .vjs-menu :not(.vjs-selected):focus:not(.focus-visible),.video-js .vjs-menu :not(.vjs-selected):focus:not(:focus-visible){background:none}.vjs-menu li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 .3em;font-weight:700;cursor:default}.vjs-menu-button-popup .vjs-menu{display:none;position:absolute;bottom:0;width:10em;left:-3em;height:0;margin-bottom:1.5em;border-top-color:rgba(43,51,63,.7)}.vjs-menu-button-popup .vjs-menu .vjs-menu-content{background-color:#2b333f;background-color:rgba(43,51,63,.7);position:absolute;width:100%;bottom:1.5em;max-height:15em}.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:5em}.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:10em}.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:14em}.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:25em}.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu{display:block}.video-js .vjs-menu-button-inline{transition:all .4s;overflow:hidden}.video-js .vjs-menu-button-inline:before{width:2.222222222em}.video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline{width:12em}.vjs-menu-button-inline .vjs-menu{opacity:0;height:100%;width:auto;position:absolute;left:4em;top:0;padding:0;margin:0;transition:all .4s}.vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-menu-button-inline:focus .vjs-menu,.vjs-menu-button-inline:hover .vjs-menu{display:block;opacity:1}.vjs-no-flex .vjs-menu-button-inline .vjs-menu{display:block;opacity:1;position:relative;width:auto}.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu{width:auto}.vjs-menu-button-inline .vjs-menu-content{width:auto;height:100%;margin:0;overflow:hidden}.video-js .vjs-control-bar{display:none;width:100%;position:absolute;bottom:0;left:0;right:0;height:3em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.vjs-audio-only-mode .vjs-control-bar,.vjs-has-started .vjs-control-bar{display:flex;visibility:visible;opacity:1;transition:visibility .1s,opacity .1s}.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{visibility:visible;opacity:0;pointer-events:none;transition:visibility 1s,opacity 1s}.vjs-controls-disabled .vjs-control-bar,.vjs-error .vjs-control-bar,.vjs-using-native-controls .vjs-control-bar{display:none!important}.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{opacity:1;visibility:visible;pointer-events:auto}.vjs-has-started.vjs-no-flex .vjs-control-bar{display:table}.video-js .vjs-control{position:relative;text-align:center;margin:0;padding:0;height:100%;width:4em;flex:none}.video-js .vjs-control.vjs-visible-text{width:auto;padding-left:1em;padding-right:1em}.vjs-button>.vjs-icon-placeholder:before{font-size:1.8em;line-height:1.67}.vjs-button>.vjs-icon-placeholder{display:block}.video-js .vjs-control:focus,.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before{text-shadow:0 0 1em #fff}.video-js :not(.vjs-visible-text)>.vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-no-flex .vjs-control{display:table-cell;vertical-align:middle}.video-js .vjs-custom-control-spacer{display:none}.video-js .vjs-progress-control{cursor:pointer;flex:auto;display:flex;align-items:center;min-width:4em;touch-action:none}.video-js .vjs-progress-control.disabled{cursor:default}.vjs-live .vjs-progress-control{display:none}.vjs-liveui .vjs-progress-control{display:flex;align-items:center}.vjs-no-flex .vjs-progress-control{width:auto}.video-js .vjs-progress-holder{flex:auto;transition:all .2s;height:.3em}.video-js .vjs-progress-control .vjs-progress-holder{margin:0 10px}.video-js .vjs-progress-control:hover .vjs-progress-holder{font-size:1.6666666667em}.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled{font-size:1em}.video-js .vjs-progress-holder .vjs-load-progress,.video-js .vjs-progress-holder .vjs-load-progress div,.video-js .vjs-progress-holder .vjs-play-progress{position:absolute;display:block;height:100%;margin:0;padding:0;width:0}.video-js .vjs-play-progress{background-color:#fff}.video-js .vjs-play-progress:before{font-size:.9em;position:absolute;right:-.5em;top:-.3333333333em;z-index:1}.video-js .vjs-load-progress{background:rgba(115,133,159,.5)}.video-js .vjs-load-progress div{background:rgba(115,133,159,.75)}.video-js .vjs-time-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-progress-holder:focus .vjs-time-tooltip{display:none}.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,.video-js .vjs-progress-control:hover .vjs-time-tooltip{display:block;font-size:.6em;visibility:visible}.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip{font-size:1em}.video-js .vjs-progress-control .vjs-mouse-display{display:none;position:absolute;width:1px;height:100%;background-color:#000;z-index:1}.vjs-no-flex .vjs-progress-control .vjs-mouse-display{z-index:0}.video-js .vjs-progress-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-time-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.video-js .vjs-slider{position:relative;cursor:pointer;padding:0;margin:0 .45em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#73859f;background-color:rgba(115,133,159,.5)}.video-js .vjs-slider.disabled{cursor:default}.video-js .vjs-slider:focus{text-shadow:0 0 1em #fff;box-shadow:0 0 1em #fff}.video-js .vjs-mute-control{cursor:pointer;flex:none}.video-js .vjs-volume-control{cursor:pointer;margin-right:1em;display:flex}.video-js .vjs-volume-control.vjs-volume-horizontal{width:5em}.video-js .vjs-volume-panel .vjs-volume-control{visibility:visible;opacity:0;width:1px;height:1px;margin-left:-1px}.video-js .vjs-volume-panel{transition:width 1s}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,.video-js .vjs-volume-panel .vjs-volume-control:active,.video-js .vjs-volume-panel:active .vjs-volume-control,.video-js .vjs-volume-panel:focus .vjs-volume-control{visibility:visible;opacity:1;position:relative;transition:visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;margin-right:0}.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical{left:-3.5em;transition:left 0s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active{width:10em;transition:width .1s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only{width:4em}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{height:8em;width:3em;left:-3000em;transition:visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{transition:visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s}.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;visibility:visible;opacity:1;position:relative;transition:none}.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{position:absolute;bottom:3em;left:.5em}.video-js .vjs-volume-panel{display:flex}.video-js .vjs-volume-bar{margin:1.35em .45em}.vjs-volume-bar.vjs-slider-horizontal{width:5em;height:.3em}.vjs-volume-bar.vjs-slider-vertical{width:.3em;height:5em;margin:1.35em auto}.video-js .vjs-volume-level{position:absolute;bottom:0;left:0;background-color:#fff}.video-js .vjs-volume-level:before{position:absolute;font-size:.9em;z-index:1}.vjs-slider-vertical .vjs-volume-level{width:.3em}.vjs-slider-vertical .vjs-volume-level:before{top:-.5em;left:-.3em;z-index:1}.vjs-slider-horizontal .vjs-volume-level{height:.3em}.vjs-slider-horizontal .vjs-volume-level:before{top:-.3em;right:-.5em}.video-js .vjs-volume-panel.vjs-volume-panel-vertical{width:4em}.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level{height:100%}.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level{width:100%}.video-js .vjs-volume-vertical{width:3em;height:8em;bottom:8em;background-color:#2b333f;background-color:rgba(43,51,63,.7)}.video-js .vjs-volume-horizontal .vjs-menu{left:-2em}.video-js .vjs-volume-tooltip{background-color:#fff;background-color:hsla(0,0%,100%,.8);border-radius:.3em;color:#000;float:right;font-family:Arial,Helvetica,sans-serif;font-size:1em;padding:6px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-control:hover .vjs-volume-tooltip{display:block;font-size:1em;visibility:visible}.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip,.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip{left:1em;top:-12px}.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip{font-size:1em}.video-js .vjs-volume-control .vjs-mouse-display{display:none;position:absolute;width:100%;height:1px;background-color:#000;z-index:1}.video-js .vjs-volume-horizontal .vjs-mouse-display{width:1px;height:100%}.vjs-no-flex .vjs-volume-control .vjs-mouse-display{z-index:0}.video-js .vjs-volume-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display{visibility:hidden;opacity:0;transition:visibility 1s,opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-volume-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,.8)}.vjs-poster{display:inline-block;vertical-align:middle;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000;cursor:pointer;margin:0;padding:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-has-started .vjs-poster,.vjs-using-native-controls .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster,.vjs-has-started.vjs-audio-poster-mode .vjs-poster{display:block}.video-js .vjs-live-control{display:flex;align-items:flex-start;flex:auto;font-size:1em;line-height:3em}.vjs-no-flex .vjs-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-liveui .vjs-live-control,.video-js:not(.vjs-live) .vjs-live-control{display:none}.video-js .vjs-seek-to-live-control{align-items:center;cursor:pointer;flex:none;display:inline-flex;height:100%;padding-left:.5em;padding-right:.5em;font-size:1em;line-height:3em;width:auto;min-width:4em}.vjs-no-flex .vjs-seek-to-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,.video-js:not(.vjs-live) .vjs-seek-to-live-control{display:none}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge{cursor:auto}.vjs-seek-to-live-control .vjs-icon-placeholder{margin-right:.5em;color:#888}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder{color:red}.video-js .vjs-time-control{flex:none;font-size:1em;line-height:3em;min-width:2em;width:auto;padding-left:1em;padding-right:1em}.video-js .vjs-current-time,.video-js .vjs-duration,.vjs-live .vjs-time-control,.vjs-no-flex .vjs-current-time,.vjs-no-flex .vjs-duration{display:none}.vjs-time-divider{display:none;line-height:3em}.vjs-live .vjs-time-divider{display:none}.video-js .vjs-play-control{cursor:pointer}.video-js .vjs-play-control .vjs-icon-placeholder{flex:none}.vjs-text-track-display{position:absolute;bottom:3em;left:0;right:0;top:0;pointer-events:none}.video-js.vjs-controls-disabled .vjs-text-track-display,.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display{bottom:1em}.video-js .vjs-text-track{font-size:1.4em;text-align:center;margin-bottom:.1em}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}video::-webkit-media-text-track-display{transform:translateY(-3em)}.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display{transform:translateY(-1.5em)}.video-js .vjs-picture-in-picture-control{cursor:pointer;flex:none}.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control{display:none}.video-js .vjs-fullscreen-control{cursor:pointer;flex:none}.video-js.vjs-audio-only-mode .vjs-fullscreen-control{display:none}.vjs-playback-rate .vjs-playback-rate-value,.vjs-playback-rate>.vjs-menu-button{position:absolute;top:0;left:0;width:100%;height:100%}.vjs-playback-rate .vjs-playback-rate-value{pointer-events:none;font-size:1.5em;line-height:2;text-align:center}.vjs-playback-rate .vjs-menu{width:4em;left:0}.vjs-error .vjs-error-display .vjs-modal-dialog-content{font-size:1.4em;text-align:center}.vjs-error .vjs-error-display:before{color:#fff;content:"X";font-family:Arial,Helvetica,sans-serif;font-size:4em;left:0;line-height:1;margin-top:-.5em;position:absolute;text-shadow:.05em .05em .1em #000;text-align:center;top:50%;vertical-align:middle;width:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.7);box-sizing:border-box;background-clip:padding-box;width:50px;height:50px;border-radius:25px;visibility:hidden}.vjs-seeking .vjs-loading-spinner,.vjs-waiting .vjs-loading-spinner{display:block;-webkit-animation:vjs-spinner-show 0s linear .3s forwards;animation:vjs-spinner-show 0s linear .3s forwards}.vjs-loading-spinner:after,.vjs-loading-spinner:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit;border-color:transparent;border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:before{-webkit-animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite;animation:vjs-spinner-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,vjs-spinner-fade 1.1s linear infinite}.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:before{border-top-color:#fff}.vjs-seeking .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:after{border-top-color:#fff;-webkit-animation-delay:.44s;animation-delay:.44s}@keyframes vjs-spinner-show{to{visibility:visible}}@-webkit-keyframes vjs-spinner-show{to{visibility:visible}}@keyframes vjs-spinner-spin{to{transform:rotate(1turn)}}@-webkit-keyframes vjs-spinner-spin{to{-webkit-transform:rotate(1turn)}}@keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}@-webkit-keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:#fff}60%{border-top-color:#73859f}to{border-top-color:#73859f}}.video-js.vjs-audio-only-mode .vjs-captions-button{display:none}.vjs-chapters-button .vjs-menu ul{width:24em}.video-js.vjs-audio-only-mode .vjs-descriptions-button{display:none}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:"\\F10D";font-size:1.5em;line-height:inherit}.video-js.vjs-audio-only-mode .vjs-subs-caps-button{display:none}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-.1em}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:" \\F11D";font-size:1.5em;line-height:inherit}.video-js.vjs-layout-small .vjs-current-time,.video-js.vjs-layout-small .vjs-duration,.video-js.vjs-layout-small .vjs-playback-rate,.video-js.vjs-layout-small .vjs-remaining-time,.video-js.vjs-layout-small .vjs-time-divider,.video-js.vjs-layout-small .vjs-volume-control,.video-js.vjs-layout-tiny .vjs-current-time,.video-js.vjs-layout-tiny .vjs-duration,.video-js.vjs-layout-tiny .vjs-playback-rate,.video-js.vjs-layout-tiny .vjs-remaining-time,.video-js.vjs-layout-tiny .vjs-time-divider,.video-js.vjs-layout-tiny .vjs-volume-control,.video-js.vjs-layout-x-small .vjs-current-time,.video-js.vjs-layout-x-small .vjs-duration,.video-js.vjs-layout-x-small .vjs-playback-rate,.video-js.vjs-layout-x-small .vjs-remaining-time,.video-js.vjs-layout-x-small .vjs-time-divider,.video-js.vjs-layout-x-small .vjs-volume-control{display:none}.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:auto}.video-js.vjs-layout-tiny .vjs-progress-control,.video-js.vjs-layout-x-small .vjs-progress-control{display:none}.video-js.vjs-layout-x-small .vjs-custom-control-spacer{flex:auto;display:block}.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer{width:auto}.vjs-modal-dialog.vjs-text-track-settings{background-color:#2b333f;background-color:rgba(43,51,63,.75);color:#fff;height:70%}.vjs-text-track-settings .vjs-modal-dialog-content{display:table}.vjs-text-track-settings .vjs-track-settings-colors,.vjs-text-track-settings .vjs-track-settings-controls,.vjs-text-track-settings .vjs-track-settings-font{display:table-cell}.vjs-text-track-settings .vjs-track-settings-controls{text-align:right;vertical-align:bottom}@supports (display:grid){.vjs-text-track-settings .vjs-modal-dialog-content{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr;padding:20px 24px 0}.vjs-track-settings-controls .vjs-default-button{margin-bottom:20px}.vjs-text-track-settings .vjs-track-settings-controls{grid-column:1/-1}.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content{grid-template-columns:1fr}}.vjs-track-setting>select{margin-right:1em;margin-bottom:.5em}.vjs-text-track-settings fieldset{margin:5px;padding:3px;border:none}.vjs-text-track-settings fieldset span{display:inline-block}.vjs-text-track-settings fieldset span>select{max-width:7.3em}.vjs-text-track-settings legend{color:#fff;margin:0 0 5px}.vjs-text-track-settings .vjs-label{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);display:block;margin:0 0 5px;padding:0;border:0;height:1px;width:1px;overflow:hidden}.vjs-track-settings-controls button:active,.vjs-track-settings-controls button:focus{outline-style:solid;outline-width:medium;background-image:linear-gradient(0deg,#fff 88%,#73859f)}.vjs-track-settings-controls button:hover{color:rgba(43,51,63,.75)}.vjs-track-settings-controls button{background-color:#fff;background-image:linear-gradient(-180deg,#fff 88%,#73859f);color:#2b333f;cursor:pointer;border-radius:2px}.vjs-track-settings-controls .vjs-default-button{margin-right:1em}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:-1000}.js-focus-visible .video-js :focus:not(.focus-visible),.video-js :focus:not(:focus-visible){outline:none}',""])},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"text-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.attributeJson.label?n("div",[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con editor-richTextWrap",on:{click:t.pageClick}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["text-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},domProps:{innerHTML:t._s(t.attributeJson.label)}})])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(137);e.a=i.a},function(t,e,n){"use strict";function i(t){n(138)}var r=n(33),a=n(169),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-02af5f7c",null);e.a=l.exports},function(t,e,n){var i=n(139);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("4a803d08",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".image-list[data-v-02af5f7c]{position:absolute;border:none;overflow:hidden}.image-list .entrance-con[data-v-02af5f7c]{position:relative;width:100%;height:100%}.image-list .swiper-container[data-v-02af5f7c]{height:100%!important}.image-list .swiper-container .swiper-slide[data-v-02af5f7c]{transform:translateZ(0);position:relative;overflow:hidden}.image-list .swiper-container .swiper-slide .slide-con[data-v-02af5f7c]{position:relative}.image-list .swiper-container .swiper-slide .slide-con img[data-v-02af5f7c]{object-fit:contain;width:100%;height:100%}.image-list .swiper-container .swiper-button-prev[data-v-02af5f7c]{background-image:none;left:20px}.image-list .swiper-container .swiper-button-prev[data-v-02af5f7c]:after{display:none}.image-list .swiper-container .swiper-button-prev .cms2iconfont[data-v-02af5f7c]{font-size:28px}.image-list .swiper-container .swiper-button-next[data-v-02af5f7c]{background-image:none;right:20px}.image-list .swiper-container .swiper-button-next[data-v-02af5f7c]:after{display:none}.image-list .swiper-container .swiper-button-next .cms2iconfont[data-v-02af5f7c]{font-size:28px}.image-list .swiper-container .swiper-scrollbar[data-v-02af5f7c]{height:3px;width:70%;left:50%;transform:translateX(-50%)}.image-list .swiper-container .swiper-scrollbar ::v-deep .swiper-scrollbar-drag[data-v-02af5f7c]{background-color:#1890ff}.image-list .image-warp[data-v-02af5f7c]{width:100%;height:100%;overflow:hidden;position:relative;display:flex}.image-list .image-warp.image-type3[data-v-02af5f7c]{overflow-x:scroll}.image-list .image-warp .image-item[data-v-02af5f7c]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:0;transition:transform .5s;flex-shrink:0;position:relative;overflow:hidden}.image-list .image-warp .image-item img[data-v-02af5f7c]{width:auto;height:auto;width:100%;height:100%}.image-list .image-warp .image-item .contain[data-v-02af5f7c]{object-fit:contain}.image-list .image-warp .image-item[data-v-02af5f7c]:first-child{padding-left:0!important}.image-list .image-warp .image-item[data-v-02af5f7c]:last-child{padding-right:0!important}.image-list .image-warp .hot-spot[data-v-02af5f7c]{position:absolute;width:100%;height:100%}.hover-con[data-v-02af5f7c]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-02af5f7c],.hover-image[data-v-02af5f7c]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(14)),s=n(5);n(44);e.a={name:"imgNav",mixins:[s.a],components:{hotspot:o.a},props:{},data:function(){return{swiper:""}},computed:{indicatorType:function(){return this.attributeJson.indicatorType},picStyle:function(){var t=this.attributeJson,e=this.ratio;return{animationDuration:this.animationInObj.duration+"s",padding:"0 "+t.paddingSpacing*e+"px",width:t.baseStyle.w*e+"px"}},picItemStyle:function(){var t=this.attributeJson,e=this.ratio,n=t.oneLineCount;return{width:(t.baseStyle.w*e-2*t.paddingSpacing*e)/n+"px",height:t.baseStyle.h*e+"px",padding:"0 "+t.itemSpacing*e+"px"}},list:function(){return this.attributeJson.list},isSwiper:function(){return 3==this.styleType&&2==this.indicatorType&&"pc"==this.mode||2==this.styleType&&2==this.indicatorType&&"mobile"==this.mode},hasConfig:function(){return this.attributeJson.list.some(function(t){return 0!=t.picList.length})},hasSwiperButton:function(){return 3==this.styleType&&2==this.indicatorType&&"pc"==this.mode},hasScrollBar:function(){return 2==this.styleType&&2==this.indicatorType&&"mobile"==this.mode}},watch:{isSwiper:{handler:function(t){t&&this.initSwiper()},immediate:!0},entranceShow:{handler:function(t){t&&this.isSwiper&&this.initSwiper()}}},methods:{initSwiper:function(){var t=this;this.hasConfig&&this.isSwiper&&this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null);var e=t.attributeJson;t.options={effect:"slide",autoplay:!1,slidesPerView:t.attributeJson.oneLineCount,spaceBetween:e.itemSpacing},t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId}),t.hasScrollBar&&(t.options.scrollbar={el:".swiper-scrollbar-"+t.sortId,draggable:!0},t.options.freeMode=!0),t.swiper=new r.a(".swiper-container-"+t.sortId,t.options),console.log("[32m%s[0m","初始化轮播图",t.swiper)})}}}},function(t,e,n){"use strict";function i(t){n(142)}var r=n(34),a=n(168),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-0bd614f2",null);e.a=l.exports},function(t,e,n){var i=n(143);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("f1d47758",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".pop-wrap .pop-item[data-v-0bd614f2],.pop-wrap[data-v-0bd614f2]{position:absolute}.pop-wrap .pop-item .product-hover[data-v-0bd614f2]{font-size:0;display:flex;align-items:center;position:relative;height:100%}.pop-wrap .pop-item .product-hover .product-image[data-v-0bd614f2]{font-size:0;padding-left:10px}",""])},function(t,e,n){"use strict";var i=n(35);e.a={name:"hotspot",props:{item:{type:Object,default:function(){}},width:{type:Number,default:0},height:{type:Number,default:0},ratio:{type:Number,default:1},envUrl:{type:String}},data:function(){return{proportion:1,hoverIndex:1,service:new i.a}},watch:{"item.width":{handler:function(t){this.proportion=t/750},deep:!0,immediate:!0},itemCodeList:{handler:function(t){this.getProductList(t)},immediate:!0,deep:!0}},computed:{itemCodeList:function(){return this.item.popList.filter(function(t){return 1==t.jumpLinkType&&1==t.product.imageType}).map(function(t){return t.productCode})}},methods:{pageClick:function(t){this.$emit("jumpLink",t)},getProductList:function(t){var e=this,n={itemCodeList:t,pageNum:1,pageSize:t.length},i={};this.service.getProductInfo(this.envUrl,n).then(function(t){t&&t.list&&(e.productList=t.list,t.list.forEach(function(t){i[t.code]=t.mainPicUrl}),e.productImage=i)})},mouseover:function(t){this.hoverIndex=t},mouseLeave:function(){this.hoverIndex=-1}}}},function(t,e,n){"use strict";function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function r(t){return function(){var e=t.apply(this,arguments);return new Promise(function(t,n){function i(r,a){try{var o=e[r](a),s=o.value}catch(t){return void n(t)}if(!o.done)return Promise.resolve(s).then(function(t){i("next",t)},function(t){i("throw",t)});t(s)}return i("next")})}}function a(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t){if(200===t.status){var e=t.data;return"0"===e.errorCode?e.data:t.data}}n.d(e,"a",function(){return h});var s=n(146),l=n.n(s),c=n(149),u=n.n(c),d=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),p={json:"application/json;",form:"application/x-www-form-urlencoded;",html:"text/html;",file:"multipart/form-data",excel:"msexcel",xml:"application/xml",javascript:"application/x-javascript;charset=utf-8"},f={lang:"Accept-Language",contentType:"Content-Type"};u.a.interceptors.response.use(o,function(t){return t.message,Promise.reject(t)});var h=function(){function t(){a(this,t)}return d(t,null,[{key:"call",value:function(){function t(t){return e.apply(this,arguments)}var e=r(l.a.mark(function t(e){var n,i,r,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=a.method,s=void 0===o?"get":o,c=a.headers,d=void 0===c?{}:c,p=a.body,f=void 0===p?null:p,h=a.responseType,m=void 0===h?null:h;return l.a.wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return n=e,i={method:s,url:n,responseType:m||"json",headers:d},"get"===s?i.params=f:i.data=f,t.next=5,u()(i).catch(function(t){t.response?console.error(t.response.status,t.response.data):t.request?console.error(t.request):console.error("Error",t.message?t.message:"")});case 5:return r=t.sent,t.abrupt("return",r);case 7:case"end":return t.stop()}},t,this)}));return t}()},{key:"get",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=n.mask,r=void 0===i||i,a=n.external,o=void 0!==a&&a,s=n.headers,l=void 0===s?{}:s;return t.call(e,{headers:l,external:o,mask:r})}},{key:"postBody",value:function(e,n){var r=n.body,a=void 0===r?{}:r,o=n.module,s=void 0===o?"":o,l=n.method,c=void 0===l?"post":l,u=n.mask,d=void 0===u||u,h=n.postData,m=void 0===h||h,v=n.external,g=void 0!==v&&v,y=n.headers,b=void 0===y?{}:y,w=n.compat;return t.call(e,{module:s,method:c,headers:Object.assign(b,i({},f.contentType,p.json)),body:a,postData:m,external:g,mask:d,compat:w})}}]),t}()},function(t,e,n){t.exports=n(147)},function(t,e,n){var i=function(){return this}()||Function("return this")(),r=i.regeneratorRuntime&&Object.getOwnPropertyNames(i).indexOf("regeneratorRuntime")>=0,a=r&&i.regeneratorRuntime;if(i.regeneratorRuntime=void 0,t.exports=n(148),r)i.regeneratorRuntime=a;else try{delete i.regeneratorRuntime}catch(t){i.regeneratorRuntime=void 0}},function(t,e){!function(e){"use strict";function n(t,e,n,i){var a=e&&e.prototype instanceof r?e:r,o=Object.create(a.prototype),s=new f(i||[]);return o._invoke=c(t,n,s),o}function i(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}function r(){}function a(){}function o(){}function s(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function l(t){function e(n,r,a,o){var s=i(t[n],t,r);if("throw"!==s.type){var l=s.arg,c=l.value;return c&&"object"==typeof c&&y.call(c,"__await")?Promise.resolve(c.__await).then(function(t){e("next",t,a,o)},function(t){e("throw",t,a,o)}):Promise.resolve(c).then(function(t){l.value=t,a(l)},o)}o(s.arg)}function n(t,n){function i(){return new Promise(function(i,r){e(t,n,i,r)})}return r=r?r.then(i,i):i()}var r;this._invoke=n}function c(t,e,n){var r=S;return function(a,o){if(r===C)throw new Error("Generator is already running");if(r===A){if("throw"===a)throw o;return m()}for(n.method=a,n.arg=o;;){var s=n.delegate;if(s){var l=u(s,n);if(l){if(l===I)continue;return l}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===S)throw r=A,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=C;var c=i(t,e,n);if("normal"===c.type){if(r=n.done?A:E,c.arg===I)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=A,n.method="throw",n.arg=c.arg)}}}function u(t,e){var n=t.iterator[e.method];if(n===v){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=v,u(t,e),"throw"===e.method))return I;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return I}var r=i(n,t.iterator,e.arg);if("throw"===r.type)return e.method="throw",e.arg=r.arg,e.delegate=null,I;var a=r.arg;return a?a.done?(e[t.resultName]=a.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=v),e.delegate=null,I):a:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,I)}function d(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function p(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function f(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(d,this),this.reset(!0)}function h(t){if(t){var e=t[w];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var n=-1,i=function e(){for(;++n<t.length;)if(y.call(t,n))return e.value=t[n],e.done=!1,e;return e.value=v,e.done=!0,e};return i.next=i}}return{next:m}}function m(){return{value:v,done:!0}}var v,g=Object.prototype,y=g.hasOwnProperty,b="function"==typeof Symbol?Symbol:{},w=b.iterator||"@@iterator",_=b.asyncIterator||"@@asyncIterator",T=b.toStringTag||"@@toStringTag",x="object"==typeof t,k=e.regeneratorRuntime;if(k)return void(x&&(t.exports=k));k=e.regeneratorRuntime=x?t.exports:{},k.wrap=n;var S="suspendedStart",E="suspendedYield",C="executing",A="completed",I={},O={};O[w]=function(){return this};var j=Object.getPrototypeOf,P=j&&j(j(h([])));P&&P!==g&&y.call(P,w)&&(O=P);var L=o.prototype=r.prototype=Object.create(O);a.prototype=L.constructor=o,o.constructor=a,o[T]=a.displayName="GeneratorFunction",k.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===a||"GeneratorFunction"===(e.displayName||e.name))},k.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,o):(t.__proto__=o,T in t||(t[T]="GeneratorFunction")),t.prototype=Object.create(L),t},k.awrap=function(t){return{__await:t}},s(l.prototype),l.prototype[_]=function(){return this},k.AsyncIterator=l,k.async=function(t,e,i,r){var a=new l(n(t,e,i,r));return k.isGeneratorFunction(e)?a:a.next().then(function(t){return t.done?t.value:a.next()})},s(L),L[T]="Generator",L[w]=function(){return this},L.toString=function(){return"[object Generator]"},k.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var i=e.pop();if(i in t)return n.value=i,n.done=!1,n}return n.done=!0,n}},k.values=h,f.prototype={constructor:f,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=v,this.done=!1,this.delegate=null,this.method="next",this.arg=v,this.tryEntries.forEach(p),!t)for(var e in this)"t"===e.charAt(0)&&y.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=v)},stop:function(){this.done=!0;var t=this.tryEntries[0],e=t.completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(t){function e(e,i){return a.type="throw",a.arg=t,n.next=e,i&&(n.method="next",n.arg=v),!!i}if(this.done)throw t;for(var n=this,i=this.tryEntries.length-1;i>=0;--i){var r=this.tryEntries[i],a=r.completion;if("root"===r.tryLoc)return e("end");if(r.tryLoc<=this.prev){var o=y.call(r,"catchLoc"),s=y.call(r,"finallyLoc");if(o&&s){if(this.prev<r.catchLoc)return e(r.catchLoc,!0);if(this.prev<r.finallyLoc)return e(r.finallyLoc)}else if(o){if(this.prev<r.catchLoc)return e(r.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<r.finallyLoc)return e(r.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&y.call(i,"finallyLoc")&&this.prev<i.finallyLoc){var r=i;break}}r&&("break"===t||"continue"===t)&&r.tryLoc<=e&&e<=r.finallyLoc&&(r=null);var a=r?r.completion:{};return a.type=t,a.arg=e,r?(this.method="next",this.next=r.finallyLoc,I):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),I},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),p(n),I}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var i=n.completion;if("throw"===i.type){var r=i.arg;p(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:h(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=v),I}}}(function(){return this}()||Function("return this")())},function(t,e,n){t.exports=n(150)},function(t,e,n){"use strict";function i(t){var e=new o(t),n=a(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var r=n(3),a=n(36),o=n(151),s=n(42),l=n(15),c=i(l);c.Axios=o,c.create=function(t){return i(s(c.defaults,t))},c.Cancel=n(43),c.CancelToken=n(165),c.isCancel=n(41),c.all=function(t){return Promise.all(t)},c.spread=n(166),c.isAxiosError=n(167),t.exports=c,t.exports.default=c},function(t,e,n){"use strict";function i(t){this.defaults=t,this.interceptors={request:new o,response:new o}}var r=n(3),a=n(37),o=n(152),s=n(153),l=n(42),c=n(163),u=c.validators;i.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{},t.url=arguments[0]):t=t||{},t=l(this.defaults,t),t.method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=t.transitional;void 0!==e&&c.assertOptions(e,{silentJSONParsing:u.transitional(u.boolean,"1.0.0"),forcedJSONParsing:u.transitional(u.boolean,"1.0.0"),clarifyTimeoutError:u.transitional(u.boolean,"1.0.0")},!1);var n=[],i=!0;this.interceptors.request.forEach(function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(i=i&&e.synchronous,n.unshift(e.fulfilled,e.rejected))});var r=[];this.interceptors.response.forEach(function(t){r.push(t.fulfilled,t.rejected)});var a;if(!i){var o=[s,void 0];for(Array.prototype.unshift.apply(o,n),o=o.concat(r),a=Promise.resolve(t);o.length;)a=a.then(o.shift(),o.shift());return a}for(var d=t;n.length;){var p=n.shift(),f=n.shift();try{d=p(d)}catch(t){f(t);break}}try{a=s(d)}catch(t){return Promise.reject(t)}for(;r.length;)a=a.then(r.shift(),r.shift());return a},i.prototype.getUri=function(t){return t=l(this.defaults,t),a(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],function(t){i.prototype[t]=function(e,n){return this.request(l(n||{},{method:t,url:e,data:(n||{}).data}))}}),r.forEach(["post","put","patch"],function(t){i.prototype[t]=function(e,n,i){return this.request(l(i||{},{method:t,url:e,data:n}))}}),t.exports=i},function(t,e,n){"use strict";function i(){this.handlers=[]}var r=n(3);i.prototype.use=function(t,e,n){return this.handlers.push({fulfilled:t,rejected:e,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=i},function(t,e,n){"use strict";function i(t){t.cancelToken&&t.cancelToken.throwIfRequested()}var r=n(3),a=n(154),o=n(41),s=n(15);t.exports=function(t){return i(t),t.headers=t.headers||{},t.data=a.call(t,t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||s.adapter)(t).then(function(e){return i(t),e.data=a.call(t,e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(i(t),e&&e.response&&(e.response.data=a.call(t,e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var i=n(3),r=n(15);t.exports=function(t,e,n){var a=this||r;return i.forEach(n,function(n){t=n.call(a,t,e)}),t}},function(t,e,n){"use strict";var i=n(3);t.exports=function(t,e){i.forEach(t,function(n,i){i!==e&&i.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[i])})}},function(t,e,n){"use strict";var i=n(40);t.exports=function(t,e,n){var r=n.config.validateStatus;n.status&&r&&!r(n.status)?e(i("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";var i=n(3);t.exports=i.isStandardBrowserEnv()?function(){return{write:function(t,e,n,r,a,o){var s=[];s.push(t+"="+encodeURIComponent(e)),i.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),i.isString(r)&&s.push("path="+r),i.isString(a)&&s.push("domain="+a),!0===o&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},function(t,e,n){"use strict";var i=n(159),r=n(160);t.exports=function(t,e){return t&&!i(e)?r(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var i=n(3),r=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,a,o={};return t?(i.forEach(t.split("\n"),function(t){if(a=t.indexOf(":"),e=i.trim(t.substr(0,a)).toLowerCase(),n=i.trim(t.substr(a+1)),e){if(o[e]&&r.indexOf(e)>=0)return;o[e]="set-cookie"===e?(o[e]?o[e]:[]).concat([n]):o[e]?o[e]+", "+n:n}}),o):o}},function(t,e,n){"use strict";var i=n(3);t.exports=i.isStandardBrowserEnv()?function(){function t(t){var e=t;return n&&(r.setAttribute("href",e),e=r.href),r.setAttribute("href",e),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}var e,n=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");return e=t(window.location.href),function(n){var r=i.isString(n)?t(n):n;return r.protocol===e.protocol&&r.host===e.host}}():function(){return function(){return!0}}()},function(t,e,n){"use strict";function i(t,e){for(var n=e?e.split("."):l,i=t.split("."),r=0;r<3;r++){if(n[r]>i[r])return!0;if(n[r]<i[r])return!1}return!1}function r(t,e,n){if("object"!=typeof t)throw new TypeError("options must be an object");for(var i=Object.keys(t),r=i.length;r-- >0;){var a=i[r],o=e[a];if(o){var s=t[a],l=void 0===s||o(s,a,t);if(!0!==l)throw new TypeError("option "+a+" must be "+l)}else if(!0!==n)throw Error("Unknown option "+a)}}var a=n(164),o={};["object","boolean","number","function","string","symbol"].forEach(function(t,e){o[t]=function(n){return typeof n===t||"a"+(e<1?"n ":" ")+t}});var s={},l=a.version.split(".");o.transitional=function(t,e,n){function r(t,e){return"[Axios v"+a.version+"] Transitional option '"+t+"'"+e+(n?". "+n:"")}var o=e&&i(e);return function(n,i,a){if(!1===t)throw new Error(r(i," has been removed in "+e));return o&&!s[i]&&(s[i]=!0,console.warn(r(i," has been deprecated since v"+e+" and will be removed in the near future"))),!t||t(n,i,a)}},t.exports={isOlderVersion:i,assertOptions:r,validators:o}},function(t,e){t.exports={_args:[["axios@0.21.4","D:\\后台\\装修2\\front-eshop-cms2.0"]],_from:"axios@0.21.4",_id:"axios@0.21.4",_inBundle:!1,_integrity:"sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",_location:"/axios",_phantomChildren:{},_requested:{type:"version",registry:!0,raw:"axios@0.21.4",name:"axios",escapedName:"axios",rawSpec:"0.21.4",saveSpec:null,fetchSpec:"0.21.4"},_requiredBy:["/"],_resolved:"https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz",_spec:"0.21.4",_where:"D:\\后台\\装修2\\front-eshop-cms2.0",author:{name:"Matt Zabriskie"},browser:{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},bugs:{url:"https://github.com/axios/axios/issues"},bundlesize:[{path:"./dist/axios.min.js",threshold:"5kB"}],dependencies:{"follow-redirects":"^1.14.0"},description:"Promise based HTTP client for the browser and node.js",devDependencies:{coveralls:"^3.0.0","es6-promise":"^4.2.4",grunt:"^1.3.0","grunt-banner":"^0.6.0","grunt-cli":"^1.2.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","grunt-eslint":"^23.0.0","grunt-karma":"^4.0.0","grunt-mocha-test":"^0.13.3","grunt-ts":"^6.0.0-beta.19","grunt-webpack":"^4.0.2","istanbul-instrumenter-loader":"^1.0.0","jasmine-core":"^2.4.1",karma:"^6.3.2","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^2.1.0","karma-jasmine":"^1.1.1","karma-jasmine-ajax":"^0.1.13","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.3.8","karma-webpack":"^4.0.2","load-grunt-tasks":"^3.5.2",minimist:"^1.2.0",mocha:"^8.2.1",sinon:"^4.5.0","terser-webpack-plugin":"^4.2.3",typescript:"^4.0.5","url-search-params":"^0.10.0",webpack:"^4.44.2","webpack-dev-server":"^3.11.0"},homepage:"https://axios-http.com",jsdelivr:"dist/axios.min.js",keywords:["xhr","http","ajax","promise","node"],license:"MIT",main:"index.js",name:"axios",repository:{type:"git",url:"git+https://github.com/axios/axios.git"},scripts:{build:"NODE_ENV=production grunt build",coveralls:"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",examples:"node ./examples/server.js",fix:"eslint --fix lib/**/*.js",postversion:"git push && git push --tags",preversion:"npm test",start:"node ./sandbox/server.js",test:"grunt test",version:"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json"},typings:"./index.d.ts",unpkg:"dist/axios.min.js",version:"0.21.4"}},function(t,e,n){"use strict";function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new r(t),e(n.reason))})}var r=n(43);i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i(function(e){t=e}),cancel:t}},t.exports=i},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";t.exports=function(t){return"object"==typeof t&&!0===t.isAxiosError}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"pop-wrap",style:{left:t.item.left,top:t.item.top,width:t.item.realWidth*t.ratio+"px"||"100%",height:t.item.realHeight*t.ratio+"px"||"100%"}},t._l(t.item.popList,function(e,i){return n("div",{class:"pop-item",style:{width:e.width/750*100+"%",height:e.height/(t.item.height/t.proportion)*100+"%",left:e.left/750*100+"%",top:e.top/(t.item.height/t.proportion)*100+"%"},on:{click:function(n){return t.pageClick(e)}}},[e.product.openHot?n("div",{staticClass:"product-hover",on:{mouseover:function(e){return t.mouseover(i)},mouseleave:t.mouseLeave}},[0!=e.product.initImage.length?n("div",{staticStyle:{"{fontSize":"0}"}},[n("img",{attrs:{src:t.hoverIndex==i?e.product.hoverImage[0].resourcePath:e.product.initImage[0].resourcePath,alt:""}})]):t._e(),t._v(" "),t.hoverIndex==i?n("div",{staticClass:"product-image"},[n("img",{attrs:{src:1==e.product.imageType?t.productImage[e.productCode]:e.product.productImage[0].resourcePath,alt:""}})]):t._e()]):t._e()])}),0)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{key:t.attributeJson.sort,staticClass:"image-list",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.hasConfig?n("div",[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["image-warp",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"}},[t.isSwiper?n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],style:[t.picStyle,3===t.animationHoverObj.type&&t.hoverStyleShow?t.hoverStyle:""]},[n("div",{class:["swiper-container swiper-container-"+t.sortId]},[n("div",{staticClass:"swiper-wrapper",style:{height:(t.baseStyle.h-(t.hasScrollBar?30:0))*t.ratio+"px!important"}},t._l(t.attributeJson.list,function(e){return n("div",{key:e.id,staticClass:"swiper-slide",style:{width:t.baseStyle.w/4*t.ratio+"px"}},[n("div",{staticClass:"slide-con",style:{height:(t.baseStyle.h-(t.hasScrollBar?30:0))*t.ratio+"px"}},[n("img",{attrs:{src:e.picList[0]&&e.picList[0].resourcePath,alt:""}}),t._v(" "),0!=e.picList.length&&0!=e.popList.length?[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))]:t._e()],2)])}),0),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-prev swiper-button-prev-"+t.sortId},[t._t("swiper-button-prev",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft"})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-next swiper-button-next-"+t.sortId},[t._t("swiper-button-next",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright"})]):t._e()]})],2):t._e(),t._v(" "),t.hasScrollBar?n("div",{class:"swiper-scrollbar swiper-scrollbar-"+t.sortId}):t._e()]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()]):n("div",{class:["image-warp",3==t.styleType&&"pc"!=t.mode?"image-type3":""],style:[t.picStyle,3===t.animationHoverObj.type&&t.hoverStyleShow?t.hoverStyle:""]},t._l(t.attributeJson.list,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],key:i,staticClass:"image-item",style:[t.picItemStyle]},[n("img",{class:{contain:1!=t.styleType},attrs:{src:0!=e.picList.length?e.picList[0].resourcePath:"",alt:""}}),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e(),t._v(" "),5===t.animationHoverObj.type&&t.hoverImage&&t.hoverStyleShow?n("img",{staticClass:"hover-image",attrs:{src:t.hoverImage,alt:""}}):t._e(),t._v(" "),0!=e.picList.length&&0!=e.popList.length?n("div",[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))],1):t._e()])}),0)])])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(171);e.a=i.a},function(t,e,n){"use strict";function i(t){n(172)}var r=n(45),a=n(180),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-246200b7",null);e.a=l.exports},function(t,e,n){var i=n(173);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1b8fe5b3",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".video-wrap[data-v-246200b7]{border:none;touch-action:auto;position:absolute}.video-wrap .entrance-con[data-v-246200b7]{position:relative;width:100%;height:100%;overflow:hidden}.video-wrap .video-con[data-v-246200b7]{position:relative}.video-wrap .video-con .hot-image[data-v-246200b7]{position:absolute;left:0;top:0;width:100%;height:100%}.video-wrap .video-con .hot-image img[data-v-246200b7]{width:100%;height:100%}",""])},function(t,e,n){"use strict";var i=n(5),r=n(14),a=n(46);e.a={name:"videoItem",mixins:[i.a],components:{hotspot:r.a,myVideoPlayer:a.a},props:{attributeJson:{type:Object,default:function(){}},ratio:{type:Number,default:1}},data:function(){return{autoPlay:!1}},watch:{"videoInfo.checkedAttr":{handler:function(t){this.autoPlay=t.indexOf("autoPlay")>-1},immediate:!0,deep:!0}},computed:{videoItem:function(){return this.attributeJson.videoInfo.list},videoHotPic:function(){return this.attributeJson.videoHotInfo.picList},videoHotPop:function(){return this.attributeJson.videoHotInfo.popList},videoInfo:function(){return this.attributeJson.videoInfo},hotData:function(){var t=this.attributeJson;return{popList:t.videoHotInfo.popList,width:t.videoHotInfo.picList[0].width,height:t.videoHotInfo.picList[0].height,realWidth:t.baseStyle.w,realHeight:t.baseStyle.h}}},methods:{}}},function(t,e,n){"use strict";function i(t){n(176)}var r=n(47),a=n(179),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-30cb8026",null);e.a=l.exports},function(t,e,n){var i=n(177);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("2ad1437c",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".video-item[data-v-30cb8026]{width:100%!important;height:100%!important;object-fit:cover}.video-cover[data-v-30cb8026]{position:absolute;width:100%;height:100%;top:0;left:0}",""])},function(t,e,n){"use strict";e.a={name:"videoPlayer",props:{videoInfo:{type:Object,default:function(){}},autoPlay:{type:Boolean,default:!1},sort:{type:Number,default:0}},data:function(){return{isPlay:!1}},watch:{autoPlay:{handler:function(t){this.player&&(t?this.player.play():this.player.pause())},immediate:!0,deep:!0}},mounted:function(){var t=this,e=this;this.player=this.$video(this.$refs["myVideo-"+this.sort],{},function(){this.on("play",function(){e.isPlay=!0}),this.on("pause",function(){e.isPlay=!1})}),this.$nextTick(function(){t.play()})},methods:{play:function(){0!=this.videoInfo.list.length&&this.autoPlay&&this.player.play()},clickVideo:function(){this.isPlay?this.player.pause():this.player.play()}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{height:"100%",position:"relative"}},[n("video",{ref:"myVideo-"+t.sort,staticClass:"video-js vjs-default-skin vjs-big-play-centered vjs-16-9 video-item",attrs:{preload:"auto","x5-playsinline":"","x5-video-orientation":"landscape|portrait","x5-video-player-type":"h5","webkit-playsinline":"true",playsinline:"true",controls:t.videoInfo.checkedAttr.indexOf("controls")>-1,autoplay:t.autoPlay,loop:t.videoInfo.checkedAttr.indexOf("loop")>-1,muted:"true",poster:0!=t.videoInfo.list.length?t.videoInfo.list[0].imgUrl:""},domProps:{muted:!0}},[n("source",{attrs:{src:0!=t.videoInfo.list.length?t.videoInfo.list[0].resourcePath:""}})]),t._v(" "),n("div",{staticClass:"video-cover",on:{click:t.clickVideo}})])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"video-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:0!==t.videoItem.length,expression:"videoItem.length !== 0"}]},[n("div",{directives:[{name:"entrance",rawName:"v-entrance",value:{video:t.attributeJson.videoInfo},expression:"{video: attributeJson.videoInfo}"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["video-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",animationDuration:t.animationInObj.duration+"s"}},[n("myVideoPlayer",{attrs:{sort:(new Date).getTime(),videoInfo:t.videoInfo,autoPlay:t.autoPlay}}),t._v(" "),1===t.attributeJson.isVideoHasHot&&0!=t.videoHotPic.length?n("div",{staticClass:"hot-image"},[n("img",{attrs:{src:t.videoHotPic[0].resourcePath,alt:""}}),t._v(" "),n("hotspot",t._g({attrs:{item:t.hotData,ratio:t.ratio}},t.$listeners))],1):t._e()],1)])])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(182);e.a=i.a},function(t,e,n){"use strict";function i(t){n(183)}var r=n(48),a=n(186),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-771b7c13",null);e.a=l.exports},function(t,e,n){var i=n(184);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("55b4cb18",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".swiper-wrap[data-v-771b7c13]{position:absolute}.swiper-wrap .swiper-con[data-v-771b7c13]{position:relative;width:100%;height:100%;background-size:cover}.swiper-wrap .swiper-con .entrance-con[data-v-771b7c13]{position:relative;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container[data-v-771b7c13]{position:relative;width:100%;height:100%;transform:translateZ(0);overflow:hidden}.swiper-wrap .swiper-con .swiper-container .swiper-slide[data-v-771b7c13]{transform:translateZ(0);position:relative;overflow:hidden}.swiper-wrap .swiper-con .swiper-container .swiper-slide.slide-auto[data-v-771b7c13]{width:auto}.swiper-wrap .swiper-con .swiper-container .swiper-slide img[data-v-771b7c13]{object-fit:contain;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .swiper-hot[data-v-771b7c13]{position:absolute;width:100%;height:100%;left:0;top:0}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con[data-v-771b7c13]{position:relative}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-item[data-v-771b7c13]{object-fit:cover;position:relative;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-hot-image[data-v-771b7c13]{position:absolute;top:0;left:0;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-slide .video-player-con .video-hot-image img[data-v-771b7c13]{object-fit:fill;width:100%;height:100%}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev[data-v-771b7c13]{background-image:none;left:20px}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev:hover .cms2iconfont[data-v-771b7c13]{color:var(--hoverColor)!important}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev[data-v-771b7c13]:after{display:none}.swiper-wrap .swiper-con .swiper-container .swiper-button-prev .cms2iconfont[data-v-771b7c13]{font-size:28px}.swiper-wrap .swiper-con .swiper-container .swiper-button-next[data-v-771b7c13]{background-image:none;right:20px}.swiper-wrap .swiper-con .swiper-container .swiper-button-next:hover .cms2iconfont[data-v-771b7c13]{color:var(--hoverColor)!important}.swiper-wrap .swiper-con .swiper-container .swiper-button-next[data-v-771b7c13]:after{display:none}.swiper-wrap .swiper-con .swiper-container .swiper-button-next .cms2iconfont[data-v-771b7c13]{font-size:28px}.swiper-wrap .swiper-con .swiper-container .swiper-scrollbar-own[data-v-771b7c13]{position:absolute;height:3px;width:70%;left:50%;bottom:10px;background-color:var(--color);transform:translateX(-50%);z-index:10}.swiper-wrap .swiper-con .swiper-container .swiper-scrollbar-own .swiper-scrollbar-drag[data-v-771b7c13]{position:absolute;background-color:var(--activeColor);transition:all .3s}.swiper-wrap .swiper-con .swiper-container .arrow[data-v-771b7c13]{width:40px;height:40px;background-color:#edf5fe;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.swiper-wrap .swiper-con .swiper-container .arrow .cms2iconfont[data-v-771b7c13]{font-size:20px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-prev[data-v-771b7c13]{top:84%;left:36px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-prev .cms2iconfont[data-v-771b7c13]{font-size:24px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-next[data-v-771b7c13]{top:84%;right:0;left:98px}.swiper-wrap .swiper-con .swiper-container-3 .swiper-button-next .cms2iconfont[data-v-771b7c13]{font-size:24px}.swiper-wrap .swiper-con-mobile .swiper-container .arrow[data-v-771b7c13]{width:32px;height:32px;background-color:#edf5fe;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.swiper-wrap .swiper-con-mobile .swiper-container .arrow .cms2iconfont[data-v-771b7c13]{font-size:12px!important}.hover-con[data-v-771b7c13]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-771b7c13],.hover-image[data-v-771b7c13]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(14)),s=n(5),l=n(46);e.a={name:"swiperItem",mixins:[s.a],components:{hotspot:o.a,myVideoPlayer:l.a},props:{sortId:{type:Number}},data:function(){return{hasSwiperItem:!1,swiper:"",videoShow:!0,activeIndex:0}},watch:{list:{handler:function(t){this.judgeSwiper()},immediate:!0,deep:!0},entranceShow:{handler:function(t){t&&this.initSwiper()}}},computed:{bgStyle:function(){return this.attributeJson.bgStyle},list:function(){return this.attributeJson.list},styleType:function(){return this.attributeJson.styleType},indicatorType:function(){return this.attributeJson.indicatorType},paginationStyle:function(){return this.attributeJson.paginationStyle},pageStyle:function(){return{color:this.attributeJson.paginationStyle.color}},hasSwiperPagination:function(){return 3==this.indicatorType},hasSwiperButton:function(){return 1!=this.indicatorType},hasScrollBar:function(){return"pc"==this.mode&&2==this.indicatorType}},methods:{judgeSwiper:function(){var t=this.attributeJson.list,e=t.findIndex(function(t){return 0!=t.picList.length||0!=t.videoInfo.list.length});this.hasSwiperItem=e>-1,this.hasSwiperItem&&this.initSwiper()},initSwiper:function(){var t=this;(this.hasSwiperItem||1===this.bgStyle.status&&0!=this.bgStyle.picList.length)&&this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null,t.videoShow=!1);var e=t.attributeJson;t.options={effect:"slide",loop:!0,observer:!0,observeParents:!0,autoplay:!!e.autoPlay&&{delay:1e3*e.interval,disableOnInteraction:!0,stopOnLastSlide:!1}},"mobile"==t.mode&&2==t.styleType&&(t.options.spaceBetween=20,t.options.loop=!1,t.options.slidesPerView="auto",t.options.centeredSlides=!0),t.hasSwiperPagination&&(t.options.pagination={el:".swiper-pagination-"+t.sortId,clickable:!0}),t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId});var n=t;t.options.on={slideChangeTransitionEnd:function(){n.activeIndex=this.activeIndex}},t.swiper=new r.a(".swiper-container-"+t.sortId,t.options),t.videoShow=!0})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"swiper-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[t.hasSwiperItem||1===t.bgStyle.status&&0!=t.bgStyle.picList.length?n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],class:["swiper-con","swiper-con-"+t.mode],style:{backgroundImage:0!=t.bgStyle.picList.length?"url("+t.bgStyle.picList[0].resourcePath+")":""}},[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color,width:t.baseStyle.w*t.ratio+"px",height:t.baseStyle.h*t.ratio+"px"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],key:t.indicatorType,class:["swiper-container swiper-container-"+t.sortId+" swiper-container-"+t.indicatorType,t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},attrs:{id:"mySwiper-"+t.sortId}},[n("div",{staticClass:"swiper-wrapper"},t._l(t.list,function(e,i){return n("div",{key:e.sort,staticClass:"swiper-slide"},[n("div",{style:{width:(t.baseStyle.w-(2==t.styleType?200:0))*t.ratio+"px!important",height:t.baseStyle.h*t.ratio+"px!important"}},[1===e.type?n("img",{attrs:{src:e.picList[0]&&e.picList[0].resourcePath,alt:""}}):t._e(),t._v(" "),2===e.type&&t.videoShow?n("div",{staticClass:"video-player-con"},[n("myVideoPlayer",{attrs:{sort:(new Date).getTime(),videoInfo:e.videoInfo,autoPlay:e.videoInfo.checkedAttr.indexOf("autoPlay")>-1&&t.activeIndex==i}}),t._v(" "),2==e.type&&1==e.isVideoHasHot&&0!=e.videoHotInfo.picList.length?n("div",{staticClass:"video-hot-image"},[n("img",{attrs:{src:e.videoHotInfo.picList[0].resourcePath,alt:""}}),t._v(" "),0!=e.videoHotInfo.picList.length?n("div",{staticClass:"swiper-hot"},[n("hotspot",t._g({attrs:{item:{realWidth:e.realWidth,realHeight:e.realHeight,popList:e.videoHotInfo.popList,width:e.videoHotInfo.picList[0].width,height:e.videoHotInfo.picList[0].height},ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))],1):t._e()]):t._e()],1):t._e(),t._v(" "),1==e.type&&0!=e.picList.length?[n("hotspot",t._g({attrs:{item:e,ratio:t.ratio,envUrl:t.envUrl}},t.$listeners))]:t._e()],2)])}),0),t._v(" "),t.hasScrollBar?n("div",{staticClass:"swiper-scrollbar-own"},[n("div",{staticClass:"swiper-scrollbar-drag",style:{width:100/t.list.length+"%",left:(t.activeIndex>t.list.length?0:100/t.list.length*(t.activeIndex-1))+"%"}})]):t._e(),t._v(" "),t.hasSwiperPagination?n("div",{class:"swiper-pagination swiper-pagination-"+t.sortId+" swiper-pagination-"+t.attributeJson.indicatorType}):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-prev","swiper-button-prev-"+t.sortId]},[t._t("swiper-button-prev",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft",style:t.pageStyle})]):t._e(),t._v(" "),4==t.indicatorType?n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-left",style:t.pageStyle})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-next","swiper-button-next-"+t.sortId]},[t._t("swiper-button-next",function(){return[2==t.indicatorType||3==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright",style:t.pageStyle})]):t._e(),t._v(" "),4==t.indicatorType?n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-right",style:t.pageStyle})]):t._e()]})],2):t._e()])]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(188);e.a=i.a},function(t,e,n){"use strict";function i(t){n(189)}var r=n(49),a=n(192),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-e41211e8",null);e.a=l.exports},function(t,e,n){var i=n(190);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1ecd2f3c",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.button-wrap[data-v-e41211e8]{font-size:12px;position:absolute;border:none;touch-action:auto}.button-wrap .entrance-con[data-v-e41211e8]{position:relative;width:100%;height:100%}.button-wrap .button-cl[data-v-e41211e8]{width:100%;height:100%}.button-wrap .button-cl .button-content[data-v-e41211e8]{width:100%;height:100%;color:#000;display:flex;align-items:center;justify-content:center;line-height:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;background-size:cover;cursor:pointer;position:relative}.button-wrap .button-cl .button-content.default[data-v-e41211e8]:hover{background-color:var(--bgColor)!important;transition:background-color .3s}.button-wrap .button-cl .button-content.left[data-v-e41211e8]:before{content:"";position:absolute;right:0;top:0;height:100%;width:var(--width);background-color:var(--bgColor);transition:width .3s;z-index:1}.button-wrap .button-cl .button-content.right[data-v-e41211e8]:before{content:"";position:absolute;left:0;top:0;height:100%;width:var(--width);background-color:var(--bgColor);transition:width .3s;z-index:1}.button-wrap .button-cl .button-content.top[data-v-e41211e8]:after{content:"";position:absolute;width:100%;height:var(--height);left:0;bottom:0;background-color:var(--bgColor);transition:height .3s;z-index:1}.button-wrap .button-cl .button-content.bottom[data-v-e41211e8]:after{content:"";position:absolute;width:100%;background-color:var(--bgColor);top:0;left:0;height:var(--height);transition:height .3s;z-index:1}.button-wrap .button-cl .button-content .label[data-v-e41211e8]{z-index:10}.button-wrap .flexCenterBetween[data-v-e41211e8]{display:flex;justify-content:space-between;align-items:center}.hover-con[data-v-e41211e8]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-e41211e8],.hover-image[data-v-e41211e8]{width:100%;height:100%;position:absolute;left:0;top:0}',""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"buttonItem",mixins:[i.a],components:{},props:{},data:function(){return{iconImage:"",backgroundImage:"",hoverButtonStyle:{}}},watch:{bgStyle:{handler:function(t){0!=t.picList.length&&(this.backgroundImage=2===t.type?t.picList[0].resourcePath:"")},immediate:!0,deep:!0},iconStyle:{handler:function(t){0!=t.picList.length&&(this.iconImage=1===t.type?t.picList[0].resourcePath:"")},immediate:!0,deep:!0}},computed:{iconStyle:function(){return this.attributeJson.iconStyle},bgStyle:function(){return this.attributeJson.bgStyle},buttonStyle:function(){var t=this.attributeJson,e=t.bgStyle,n=t.fontStyle,i=t.borderStyle,r=t.space,a=i.borderTop,o=i.borderRight,s=i.borderBottom,l=i.borderLeft,c=i.borderColor,u={fontSize:n.fontSize,color:n.color,backgroundColor:1===e.type?e.backgroundColor:"",fontWeight:n.fontWeight?"bold":"",textDecoration:n.textDecoration?"underline":"",fontStyle:n.fontItalic?"italic":"",borderRadius:i.borderRadius+"px",backgroundImage:"url('"+this.backgroundImage+"')",paddingLeft:r.left+"px",paddingRight:r.right+"px"};return 1===i.type&&c&&(u.border="1px solid "+c),2===i.type&&(a=a?"1px solid "+a:"none",o=o?"1px solid "+o:"none",s=s?"1px solid "+s:"none",l=l?"1px solid "+l:"none"),u}},methods:{textMouseOver:function(){this.attributeJson.fontStyle.hoverObj.color&&this.$set(this.hoverButtonStyle,"color",this.attributeJson.fontStyle.hoverObj.color)},textMouseLeave:function(){this.$set(this.hoverButtonStyle,"color","")},pageClick:function(){this.$emit("jumpLink",this.attributeJson.linkObj)}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"button-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["button-cl",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:{animationDuration:t.animationInObj.duration+"s"},on:{click:t.pageClick}},[n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate"}],staticClass:"button-content",class:[{flexCenterBetween:t.iconImage},4===t.animationHoverObj.type?t.hoverDirection:""],style:[t.buttonStyle,{"--width":t.hoverStyleShow?"100%":"0","--height":t.hoverStyleShow?"100%":"0","--bgColor":t.animationHoverObj.bgStyle.backgroundColor}],on:{mouseover:function(e){return e.stopPropagation(),t.textMouseOver.apply(null,arguments)},mouseleave:t.textMouseLeave}},[1===t.iconStyle.type&&1===t.iconStyle.position&&t.iconImage?n("img",{attrs:{src:t.iconImage,alt:""}}):t._e(),t._v(" "),n("div",{staticClass:"label",style:t.hoverButtonStyle},[t._v(t._s(t.attributeJson.label||"按钮"))]),t._v(" "),1===t.iconStyle.type&&2===t.iconStyle.position&&t.iconImage?n("img",{attrs:{src:t.iconImage,alt:""}}):t._e(),t._v(" "),5===t.animationHoverObj.type&&t.hoverImage&&t.hoverStyleShow?n("img",{staticClass:"hover-image",attrs:{src:t.hoverImage,alt:""}}):t._e()]),t._v(" "),2===t.animationHoverObj.type?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0,borderRadius:t.attributeJson.borderStyle.borderRadius+"px"}]}):t._e()])])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(194);e.a=i.a},function(t,e,n){"use strict";function i(t){n(195)}var r=n(50),a=n(198),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-57083a4a",null);e.a=l.exports},function(t,e,n){var i=n(196);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("089a48d5",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".product-wrap[data-v-57083a4a]{border:none;position:absolute;touch-action:auto}.product-wrap .entrance-con[data-v-57083a4a]{position:relative;width:100%;height:100%}.product-wrap .product-con[data-v-57083a4a]{overflow:hidden;position:relative}.product-wrap .product-con .slide-con[data-v-57083a4a]{position:relative;width:100%;display:flex;overflow-x:auto}.product-wrap .product-con .slide-con[data-v-57083a4a]::-webkit-scrollbar{display:none}.product-wrap .product-con .slide-con .product-item[data-v-57083a4a]{flex-shrink:0;width:40%;overflow:hidden}.product-wrap .product-con .slide-con-2-pc[data-v-57083a4a]{flex-wrap:wrap}.product-wrap .product-con .slide-con-2-pc .product-item[data-v-57083a4a]{width:33.3%}.product-wrap .product-con .slide-con-2-mobile[data-v-57083a4a]{flex-wrap:wrap}.product-wrap .product-con .slide-con-2-mobile .product-item[data-v-57083a4a]{width:50%}.product-wrap .product-con .price-con[data-v-57083a4a]{display:flex;align-items:baseline;width:100%;padding:10px 0}.product-wrap .product-con .price-con .standardPrice[data-v-57083a4a]{margin-left:10px;text-decoration:line-through}.product-wrap .product-con .product-info[data-v-57083a4a]{transition:opacity .4s;padding:10px 2px 0}.product-wrap .product-con .product-info.position1[data-v-57083a4a]{text-align:left}.product-wrap .product-con .product-info.position2[data-v-57083a4a]{text-align:center}.product-wrap .product-con .product-info.position2 .price-con[data-v-57083a4a]{display:flex;justify-content:center}.product-wrap .product-con .product-info.position3[data-v-57083a4a]{text-align:right}.product-wrap .product-con .product-info.position3 .price-con[data-v-57083a4a]{display:flex;justify-content:flex-end}.product-wrap .product-con .transparent[data-v-57083a4a]{opacity:0}.product-wrap .product-con .product-image[data-v-57083a4a]{width:100%;height:auto;overflow:hidden}.product-wrap .product-con .product-image img[data-v-57083a4a]{position:relative;width:100%;transition:all .3s}.product-wrap .product-con .productInfo[data-v-57083a4a]{padding:0 10px}.product-wrap .product-con .swiper-container .swiper-wrapper .swiper-slide[data-v-57083a4a]{position:relative}.product-wrap .product-con .swiper-scrollbar[data-v-57083a4a]{height:3px;width:70%;left:50%;bottom:10px;transform:translateX(-50%)}.product-wrap .product-con .swiper-button-prev[data-v-57083a4a]{background-image:none;left:20px}.product-wrap .product-con .swiper-button-prev[data-v-57083a4a]:after{display:none}.product-wrap .product-con .swiper-button-prev:hover .cms2iconfont[data-v-57083a4a]{color:var(--hoverColor)!important}.product-wrap .product-con .swiper-button-prev .cms2iconfont[data-v-57083a4a]{font-size:28px}.product-wrap .product-con .swiper-button-next[data-v-57083a4a]{background-image:none;right:20px}.product-wrap .product-con .swiper-button-next:hover .cms2iconfont[data-v-57083a4a]{color:var(--hoverColor)!important}.product-wrap .product-con .swiper-button-next[data-v-57083a4a]:after{display:none}.product-wrap .product-con .swiper-button-next .cms2iconfont[data-v-57083a4a]{font-size:28px}.hover-con[data-v-57083a4a]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-57083a4a],.hover-image[data-v-57083a4a]{width:100%;height:100%;position:absolute;left:0;top:0}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(8),o=(n.n(a),n(5)),s=n(44),l=n(35),c=s.a;e.a={name:"productItem",mixins:[o.a],components:{},props:{sortId:{type:Number}},data:function(){return{productList:[],swiper:"",productStyle:{},service:new l.a,productIndex:""}},watch:{addProduct:{handler:function(t){1==t.type&&0==t.itemCodeList.length||(2!=t.type||t.categoryGroupCode)&&(3!=t.type||t.cmsSortCode)&&this.getProductList()},immediate:!0,deep:!0},entranceShow:{handler:function(t){t&&this.isSwiper&&this.initSwiper()}}},computed:{addProduct:function(){return this.attributeJson.addProduct},goodsPaddingSpacing:function(){return this.attributeJson.goodsPaddingSpacing},goodsSpacing:function(){return this.attributeJson.goodsSpacing},itemsPerLine:function(){return this.attributeJson.itemsPerLine},indicatorType:function(){return this.attributeJson.indicatorType},isSwiper:function(){return"pc"==this.mode&&1==this.styleType||"mobile"==this.mode&&2==this.styleType&&(2==this.indicatorType||3==this.indicatorType)},hasSwiperButton:function(){return"pc"==this.mode&&1==this.styleType&&2==this.indicatorType||"mobile"==this.mode&&2==this.styleType&&2==this.indicatorType},hasScrollBar:function(){return"mobile"==this.mode&&2==this.styleType&&3==this.indicatorType},paginationStyle:function(){return this.attributeJson.paginationStyle},pageStyle:function(){return{color:this.paginationStyle.color}},showNum:function(){var t=1;return"pc"==this.mode?t=this.attributeJson.itemsPerLine:1==this.attributeJson.styleType?t=2.5:2==this.attributeJson.styleType&&(t=this.attributeJson.itemsPerLine),t}},mounted:function(){},methods:{getProductList:function(){var t=this,e={};switch(this.addProduct.type){case 1:e={itemCodeList:this.addProduct.itemCodeList,pageNum:1,pageSize:this.addProduct.itemCodeList.length};break;case 2:e={categoryParam:{categoryCodeList:this.addProduct.categoryCodeList,categoryGroupCode:this.addProduct.categoryGroupCode},pageNum:1,pageSize:this.addProduct.max,sortRuleId:this.addProduct.sortId};break;case 3:e={pageNum:1,pageSize:this.addProduct.max,sortField:this.addProduct.cmsSortCode}}3==this.addProduct.type?this.service.getSortProductInfo(this.envUrl,e).then(function(e){e&&e.list?(t.productList=e.list,t.initProduct()):t.productList=[]}):this.service.getProductInfo(this.envUrl,e).then(function(e){e&&e.list?(t.productList=e.list,t.initProduct()):t.productList=[]})},initProduct:function(){var t=this,e=this.attributeJson,n=this.addProduct;2==e.goodsImgType&&0!=n.customImageList.length&&this.productList.forEach(function(e,i){0!=n.customImageList[i].picList.length&&t.$set(e,"customImage",n.customImageList[i].picList[0].resourcePath)}),this.productList&&this.productList.length>0&&(this.isSwiper?this.initSwiper():this.initSlide())},initSwiper:c(function(){var t=this,e=this.attributeJson,n=(this.mode,this.indicatorType),i=this.styleType;this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null),t.options={effect:"slide",autoplay:!1,slidesPerView:t.showNum,spaceBetween:e.goodsSpacing},2==i&&2==n&&(t.options.pagination={el:".swiper-pagination-"+t.sortId,clickable:!0}),t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.sortId,prevEl:".swiper-button-prev-"+t.sortId}),t.hasScrollBar&&(t.options.scrollbar={el:".swiper-scrollbar-"+t.sortId,draggable:!0},t.options.freeMode=!0),t.swiper=new r.a(".swiper-container-"+t.sortId,t.options)})},400),initSlide:function(){this.productStyle={padding:"0 "+this.goodsSpacing/2+"px",width:(this.attributeJson.baseStyle.w*this.ratio-2*this.attributeJson.goodsPaddingSpacing+this.goodsSpacing)/this.showNum+"px",marginBottom:this.goodsSpacing+"px"}},gotoPDP:function(t,e,n){console.log(t,e,n),this.$emit("gotoPDP",{code:t,colorCode:e})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"product-wrap",style:{width:Math.round(t.attributeJson.baseStyle.w*t.ratio)+"px",height:Math.round(t.attributeJson.baseStyle.h*t.ratio)+"px",left:Math.round(t.attributeJson.baseStyle.l*t.ratio)+"px",top:Math.round(t.attributeJson.baseStyle.t*t.ratio)+"px"}},[0!==t.productList.length?n("div",{directives:[{name:"entrance",rawName:"v-entrance"}],staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color}},[0!==t.productList.length?n("div",{directives:[{name:"show",rawName:"v-show",value:t.entranceShow,expression:"entranceShow"}],class:["product-con",t.animationInObj.type&&t.entranceShow?t.enterClass:""],style:[{width:t.baseStyle.w*t.ratio+"px",height:t.baseStyle.h*t.ratio+"px",padding:"0 "+t.attributeJson.goodsPaddingSpacing+"px",animationDuration:t.animationInObj.duration+"s"}]},[t.isSwiper?t._e():n("div",{ref:"slide"+t.sortId,class:"slide-con slide-con-"+t.styleType+"-"+t.mode,style:{width:t.attributeJson.baseStyle.w*t.ratio+t.attributeJson.goodsSpacing+"px",margin:"0px -"+t.attributeJson.goodsSpacing/2+"px"}},t._l(t.productList,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate",value:{key:"productIndex",value:i},expression:"{key: 'productIndex', value: index}"}],key:e.id,staticClass:"product-item",style:[t.productStyle],on:{click:function(n){return t.gotoPDP(e.code,e.colorCode,e.name)}}},[n("div",{staticClass:"product-image"},[n("img",{style:[3===t.animationHoverObj.type&&t.productIndex==i&&t.hoverStyleShow?t.hoverStyle:""],attrs:{src:2==t.attributeJson.goodsImgType&&e.customImage?e.customImage:e.mainPicUrl,alt:""}})]),t._v(" "),n("div",{class:["product-info","position"+t.attributeJson.infoPoisition,{transparent:2==t.attributeJson.isHover&&!t.hoverStyleShow}]},[t._t("productInfo",function(){return[t.attributeJson.showInfo.indexOf(1)>-1?n("div",[t._v(t._s(e.name))]):t._e(),t._v(" "),n("div",{staticClass:"price-con"},[t.attributeJson.showInfo.indexOf(2)>-1?n("div",[t._v("¥"+t._s(e.salesPrice||0))]):t._e(),t._v(" "),e.salesPrice!=e.standardPrice&&t.attributeJson.showInfo.indexOf(3)>-1?n("div",{staticClass:"standardPrice"},[t._v("¥"+t._s(e.standardPrice||0))]):t._e()])]})],2),t._v(" "),2===t.animationHoverObj.type&&t.productIndex===i?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()])}),0),t._v(" "),t.isSwiper?n("div",{key:t.styleType+t.indicatorType,ref:"slide"+t.sortId,class:"swiper-container swiper-container-"+t.sortId,attrs:{id:"mySwiper-"+t.sortId}},[n("div",{staticClass:"swiper-wrapper",style:[{width:t.baseStyle.w*t.ratio+"px"}]},t._l(t.productList,function(e,i){return n("div",{directives:[{name:"hoverAnimate",rawName:"v-hoverAnimate",value:{key:"productIndex",value:i},expression:"{key: 'productIndex', value: index}"}],key:e.id,class:"swiper-slide swiper-slide-"+t.styleType+"-"+t.mode,style:[t.productStyle]},[n("div",{ref:"product"+e.code+i,refInFor:!0,on:{click:function(n){return t.gotoPDP(e.code,e.colorCode,e.name)}}},[n("div",{staticClass:"product-image"},[n("img",{style:[3===t.animationHoverObj.type&&t.productIndex==i&&t.hoverStyleShow?t.hoverStyle:""],attrs:{src:2==t.attributeJson.goodsImgType&&e.customImage?e.customImage:e.mainPicUrl,alt:""}})]),t._v(" "),n("div",{class:["product-info","position"+t.attributeJson.infoPoisition,{transparent:2==t.attributeJson.isHover&&!t.hoverStyleShow}]},[t._t("productInfo",function(){return[t.attributeJson.showInfo.indexOf(1)>-1?n("div",[t._v(t._s(e.name))]):t._e(),t._v(" "),n("div",{staticClass:"price-con"},[t.attributeJson.showInfo.indexOf(2)>-1?n("div",[t._v("¥"+t._s(e.salesPrice||0))]):t._e(),t._v(" "),e.salesPrice!=e.standardPrice&&t.attributeJson.showInfo.indexOf(3)>-1?n("div",{staticClass:"standardPrice"},[t._v("¥"+t._s(e.standardPrice||0))]):t._e()])]})],2),t._v(" "),2===t.animationHoverObj.type&&t.productIndex===i?n("div",{staticClass:"hover-con",style:[t.hoverStyle,{opacity:t.hoverStyleShow?1:0}]}):t._e()])])}),0),t._v(" "),t.hasScrollBar?n("div",{class:"swiper-scrollbar swiper-scrollbar-"+t.sortId}):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-prev swiper-button-prev-"+t.sortId},[t._t("swiper-button-prev",function(){return[2==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconleft",style:t.pageStyle})]):t._e()]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:"swiper-button-next swiper-button-next-"+t.sortId},[t._t("swiper-button-next",function(){return[2==t.indicatorType?n("div",[n("span",{staticClass:"cms2iconfont iconright",style:t.pageStyle})]):t._e()]})],2):t._e()]):t._e()]):t._e()]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(200);e.a=i.a},function(t,e,n){"use strict";function i(t){n(201)}var r=n(51),a=n(204),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-6ce76fa4",null);e.a=l.exports},function(t,e,n){var i=n(202);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("b6843e04",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,"",""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"tabItem",mixins:[i.a],components:{},props:{},watch:{},data:function(){return{}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("vueDraggableResizable",{staticClass:"swiper-wrap",attrs:{w:t.attributeJson.baseStyle.w*t.ratio,h:t.attributeJson.baseStyle.h*t.ratio,x:t.attributeJson.baseStyle.l*t.ratio,y:t.attributeJson.baseStyle.t*t.ratio,"lock-aspect-ratio":t.attributeJson.baseStyle.isLocked,snap:!0,snapTolerance:5},on:{resizing:t.onResize,dragging:t.onDrag,refLineParams:t.getRefLineParams}},[n("div",[t._v("111")])])],1)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(206);e.a=i.a},function(t,e,n){"use strict";function i(t){n(207)}var r=n(52),a=n(210),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-e2f6b9dc",null);e.a=l.exports},function(t,e,n){var i=n(208);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("b0b6ffda",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.custom-wrap[data-v-e2f6b9dc]{position:absolute;border:none;touch-action:auto;width:100%}.custom-wrap .add-con[data-v-e2f6b9dc]{width:120px;height:84px;background-image:url("/src/assets/img/pc-cms-v2/icon.png");background-size:1941px 1407px;background-position:-684px -583px}.hover-con[data-v-e2f6b9dc]{z-index:10;transition:opacity .5s;pointer-events:none}.hover-con[data-v-e2f6b9dc],.hover-image[data-v-e2f6b9dc]{width:100%;height:100%;position:absolute;left:0;top:0}',""])},function(t,e,n){"use strict";var i=n(5);e.a={name:"customItem",mixins:[i.a],components:{},props:{},data:function(){return{}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"custom-wrap",style:{left:t.attributeJson.baseStyle.l*t.ratio+"px",top:t.attributeJson.baseStyle.t*t.ratio+"px"}},[t._t("customComponent",null,{attributeJson:t.attributeJson})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"single-layout",style:t.layoutStyle},[n("div",{staticStyle:{width:"100%",height:"100%"}},[t._l(t.layOutData.componentList,function(e,i){return[1==e.displayType?n(e.component,t._g(t._b({key:e.sort,tag:"component",style:{zIndex:i+1},attrs:{ratio:t.ratio,attributeJson:e.attributeJson,sortId:e.sort},scopedSlots:t._u([{key:"customComponent",fn:function(e){return[t._t("customComponent",null,{attributeJson:e.attributeJson})]}}],null,!0)},"component",t.$attrs,!1),t.$listeners)):t._e()]})],2)])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(213);e.a=i.a},function(t,e,n){"use strict";function i(t){n(214)}var r=n(53),a=n(219),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-489b7493",null);e.a=l.exports},function(t,e,n){var i=n(215);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("1c3600ce",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".multiple-layout[data-v-489b7493]{width:100%;height:100%;justify-content:space-between;align-items:center;overflow:hidden;position:relative;display:flex}.multiple-layout .multiple-layout-bg[data-v-489b7493]{position:absolute;width:100%;height:100%;left:0;top:0}.multiple-layout .multiple-item[data-v-489b7493]{flex-shrink:0}",""])},function(t,e,n){"use strict";var i=n(23),r=n.n(i),a=n(217),o=(n.n(a),n(7));e.a={name:"multipleLayout",components:{vueDraggableResizable:r.a,singleLayout:o.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},inheritAttrs:!1,data:function(){return{w:200,currentItem:null,currentIndex:""}},watch:{},mounted:function(){},methods:{}}},function(t,e,n){var i=n(218);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("81e56c68",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,'.vdr{touch-action:none;border:1px dashed #d6d6d6}.handle,.vdr{position:absolute;box-sizing:border-box}.handle{width:8px;height:8px;background:#fff;border:1px solid #333;box-shadow:0 0 2px #bbb}.handle-tl{top:-5px;left:-5px;cursor:nw-resize}.handle-tm{top:-5px;left:calc(50% - 4px);cursor:n-resize}.handle-tr{top:-5px;right:-5px;cursor:ne-resize}.handle-ml{top:calc(50% - 4px);left:-5px;cursor:w-resize}.handle-mr{top:calc(50% - 4px);right:-5px;cursor:e-resize}.handle-bl{bottom:-5px;left:-5px;cursor:sw-resize}.handle-bm{bottom:-5px;left:calc(50% - 4px);cursor:s-resize}.handle-br{bottom:-5px;right:-5px;cursor:se-resize}.ref-line{position:absolute;background-color:#f0c;z-index:9999}.v-line{width:1px}.h-line{height:1px}@media only screen and (max-width:768px){[class*=handle-]:before{content:"";left:-10px;right:-10px;bottom:-10px;top:-10px;position:absolute}}',""])},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{key:t.layOutData.layoutStyle.height,staticClass:"multiple-layout",style:{height:Math.round(t.layOutData.layoutStyle.height*t.ratio)+"px"}},[t._l(t.layOutData.list,function(e,i){return[n("div",{staticClass:"multiple-item",style:{width:Math.round(e.baseStyle.w*t.ratio)+"px",height:Math.round(t.layOutData.layoutStyle.height*t.ratio)+"px",zIndex:t.currentIndex==i?1:"auto"}},[n("singleLayout",t._g(t._b({attrs:{layOutData:e,componentList:e.componentList,"parent-l":e.baseStyle.l,ratio:t.ratio,recordId:t.recordId,mode:t.mode}},"singleLayout",t.$attrs,!1),t.$listeners))],1)]})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(221);e.a=i.a},function(t,e,n){"use strict";function i(t){n(222)}var r=n(54),a=n(225),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-be11224a",null);e.a=l.exports},function(t,e,n){var i=n(223);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("87b1548e",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".custom-layout[data-v-be11224a]{width:100%;height:100%;display:flex;justify-content:center;align-items:center;overflow:hidden;position:relative}",""])},function(t,e,n){"use strict";e.a={name:"customLayout",props:{layOutData:{type:Object,default:function(){}}},inheritAttrs:!1}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"custom-layout"},[n("div",{staticClass:"add-con"}),t._v(" "),t._t("customComponent",null,{attributeJson:t.layOutData})],2)},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(227);e.a=i.a},function(t,e,n){"use strict";function i(t){n(228)}var r=n(55),a=n(237),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-c4487158",null);e.a=l.exports},function(t,e,n){var i=n(229);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("749496f6",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".tab-layout[data-v-c4487158]{overflow:hidden}.tab-layout .entrance-con[data-v-c4487158],.tab-layout[data-v-c4487158]{width:100%;height:100%;position:relative}.tab-layout .tab-detail[data-v-c4487158]{overflow:hidden}.tab-layout .tab-detail .tab-list[data-v-c4487158]{display:flex;align-items:center;overflow:auto}.tab-layout .tab-detail .tab-list[data-v-c4487158]::-webkit-scrollbar{display:none}",""])},function(t,e,n){"use strict";var i=n(231),r=n(7);e.a={name:"tabLayout",components:{navItem:i.a,singleLayout:r.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},data:function(){return{tabIndex:0,activeSort:"",tabHeadTitleH:0}},computed:{hasTab:function(){return this.layOutData.list.some(function(t){return t.title})},list:function(){return this.layOutData.list},tabHeadInfo:function(){return this.layOutData.tabHeadInfo},navStyle:function(){var t=this.layOutData,e=t.tabHeadInfo,n=e.width,i=e.height,r=e.space,a=t.borderStyle,o=t.fontStyle,s=o.fontSize,l=o.color,c=o.fontWeight,u=o.textDecoration,d=o.fontItalic,p=o.hoverObj.color,f=a.borderTop,h=a.borderRight,m=a.borderBottom,v=a.borderLeft,g=a.borderColor,y=a.hoverObj;return{width:n*this.ratio+"px",height:i*this.ratio+"px",color:l,fontSize:s,fontWeight:c?"bold":"",textDecoration:u?"underline":"",fontStyle:d?"italic":"",marginRight:r*this.ratio+"px",borderTop:2===a.type&&f?"1px solid "+f:1===a.type&&g?"1px solid "+g:"none",borderRight:2===a.type&&h?"1px solid "+h:1===a.type&&g?"1px solid "+g:"none",borderBottom:2===a.type&&m?"1px solid "+m:1===a.type&&g?"1px solid "+g:"none",borderLeft:2===a.type&&v?"1px solid "+v:1===a.type&&g?"1px solid "+g:"none","--hoverColor":p,"--hoverBorderTop":2===y.type&&y.borderTop?"1px solid "+y.borderTop:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderRight":2===y.type&&y.borderRight?"1px solid "+y.borderRight:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderBottom":2===y.type&&y.borderBottom?"1px solid "+y.borderBottom:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none","--hoverBorderLeft":2===y.type&&y.borderLeft?"1px solid "+y.borderLeft:1===y.type&&y.borderColor?"1px solid "+y.borderColor:"none"}},titleStyle:function(){var t=this.layOutData.tabHeadInfo.titleStyle,e=t.fontSize,n=t.color,i=t.fontWeight,r=t.textDecoration,a=t.fontItalic;return{color:n,fontSize:e,fontWeight:i?"bold":"",textDecoration:r?"underline":"",fontStyle:a?"italic":"",paddingLeft:("pc"==this.mode?30:60)*this.ratio+"px",paddingBottom:("pc"==this.mode?40:80)*this.ratio+"px"}}},watch:{"layOutData.tabHeadInfo":{handler:function(t){var e=this;this.$nextTick(function(){e.tabHeadTitleH=2==e.layOutData.tabHeadInfo.showTitle&&e.$refs.tabHeadTitleDom?e.$refs.tabHeadTitleDom.clientHeight:0,e.setLayoutH()})},immediate:!0,deep:!0},"list.length":{handler:function(t){var e=this,n=this.list.findIndex(function(t,n){return t.sort==e.activeSort});n>-1?this.tabIndex=n:(this.tabIndex=this.tabIndex>0?this.tabIndex-1:0,this.activeSort=this.list[this.tabIndex].sort)},deep:!0},hasTab:{handler:function(t){t&&(this.activeSort=this.list[0].sort,this.tabIndex=0)}}},methods:{chooseTab:function(t,e){this.activeSort=t.sort,this.tabIndex=e,this.setLayoutH(),this.$emit("updateLayOut",{sort:this.layOutData.sort})},setLayoutH:function(){this.$set(this.layOutData.layoutStyle,"height",1*this.layOutData.list[this.tabIndex].height+1*this.layOutData.tabHeadInfo.height+1*this.tabHeadTitleH/this.ratio)}}}},function(t,e,n){"use strict";var i=n(232);e.a=i.a},function(t,e,n){"use strict";function i(t){n(233)}var r=n(56),a=n(236),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-55eeeb47",null);e.a=l.exports},function(t,e,n){var i=n(234);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("15a8f2ca",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".nav-item[data-v-55eeeb47]{text-overflow:ellipsis;white-space:nowrap;flex-shrink:0;display:flex;align-items:center;cursor:pointer;transition:all .2s;background-size:cover;overflow:hidden}.nav-item[data-v-55eeeb47]:last-child{margin-right:0}.nav-item[data-v-55eeeb47]:hover{color:var(--hoverColor)!important;border-top:var(--hoverBorderTop)!important;border-right:var(--hoverBorderRight)!important;border-bottom:var(--hoverBorderBottom)!important;border-left:var(--hoverBorderLeft)!important}",""])},function(t,e,n){"use strict";e.a={name:"navItem",props:{item:{type:Object,default:function(){}},active:{type:Boolean,default:!1},navStyle:{type:Object,default:function(){}},spacing:{type:[String,Number],default:0}},data:function(){return{}},watch:{},computed:{backStyle:function(){var t=this.item,e=this.active,n=0!=t.navStyle.picList.length?t.navStyle.picList[0].resourcePath:"",i=0!=t.navStyle.activePicList.length?t.navStyle.activePicList[0].resourcePath:n;return{backgroundColor:1==t.navStyle.type?e?t.navStyle.activeColor||t.navStyle.backgroundColor:t.navStyle.backgroundColor:"",backgroundImage:2==t.navStyle.type?e?"url('"+i+"')":"url('"+n+"')":""}}},methods:{}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"nav-item",style:[t.navStyle,t.backStyle]},[n("span",{style:{marginLeft:t.spacing+"px"}},[t._v(t._s(t.item.title))])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tab-layout"},[t.hasTab?n("div",{staticClass:"tab-detail entrance-con"},[n("div",[2==t.tabHeadInfo.showTitle?n("div",{ref:"tabHeadTitleDom",style:t.titleStyle},[n("span",[t._v(t._s(1==t.tabHeadInfo.customTitle?t.tabHeadInfo.title:t.list[t.tabIndex].title))])]):t._e(),t._v(" "),n("div",{staticClass:"tab-list",style:{margin:"0 "+("pc"==t.mode?30:60)*t.ratio+"px",height:t.navStyle.height}},t._l(t.list,function(e,i){return n("navItem",{key:i,attrs:{item:e,spacing:t.layOutData.fontStyle.spacing*t.ratio,active:t.tabIndex==i,navStyle:t.navStyle},nativeOn:{click:function(n){return t.chooseTab(e,i)}}})}),1),t._v(" "),n("div",{staticClass:"tab-content",style:{height:t.list[t.tabIndex].height*t.ratio+"px"}},[n("singleLayout",t._g(t._b({attrs:{layOutData:t.list[t.tabIndex],componentList:t.list[t.tabIndex].componentList,ratio:t.ratio,recordId:t.recordId,mode:t.mode}},"singleLayout",t.$attrs,!1),t.$listeners))],1)])]):t._e()])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=n(239);e.a=i.a},function(t,e,n){"use strict";function i(t){n(240)}var r=n(57),a=n(243),o=n(2),s=i,l=o(r.a,a.a,!1,s,"data-v-5269e4b9",null);e.a=l.exports},function(t,e,n){var i=n(241);i.__esModule&&(i=i.default),"string"==typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var r=n(1).default;r("96607826",i,!0,{})},function(t,e,n){e=t.exports=n(0)(!1),e.push([t.i,".entrance-con[data-v-5269e4b9]{overflow:hidden;height:100%}.entrance-con .swiper-container[data-v-5269e4b9]{height:100%}.entrance-con .swiper-container .swiper-slide.slide-auto[data-v-5269e4b9]{width:auto!important}.entrance-con .swiper-container .swiper-slide .slide-con[data-v-5269e4b9]{position:relative;width:100%;height:100%;background-size:cover}",""])},function(t,e,n){"use strict";var i=n(12),r=n.n(i),a=n(7);e.a={name:"slideLayout",components:{singleLayout:a.a},props:{layOutData:{type:Object,default:function(){}},ratio:{type:Number,default:1},mode:{type:String,default:"pc"},recordId:{type:Number,default:0}},data:function(){return{swiper:"",slideIndex:0,layWidth:1920,isInit:!1}},watch:{layoutStyle:{handler:function(t){this.layWidth=("pc"==this.mode?1920:750)*(t.widthStyle.width/100)},deep:!0,immediate:!0},slideLen:{handler:function(){this.calculateWidth()},immediate:!0}},computed:{layoutStyle:function(){return this.layOutData.layoutStyle},paginationStyle:function(){return this.layOutData.paginationStyle},bgStyle:function(){return this.layOutData.bgStyle},list:function(){return this.layOutData.list},styleType:function(){return this.layOutData.styleType},indicatorType:function(){return this.layOutData.indicatorType},widthStyle:function(){return this.layOutData.widthStyle},hasSwiperButton:function(){return 2==this.indicatorType},pageStyle:function(){return{color:this.layOutData.paginationStyle.color}},backStyle:function(){var t=this.bgStyle,e=this.layoutStyle,n=this.styleType,i=this.mode;return function(r){var a=this.list[r],o="",s="";return 1==t.status?1==t.type?o=t.backgroundColor||"":s=0!=t.picList.length?"url("+t.picList[0].resourcePath+")":"":1==a.bgStyle.type?o=a.bgStyle.backgroundColor||"":s=0!=a.bgStyle.picList.length?"url("+a.bgStyle.picList[0].resourcePath+")":"",{width:("mobile"==i||"pc"==i&&2==n?this.layWidth-(this.layOutData.lineSlideNum+1)*("mobile"==i?20:40)-("mobile"==i?30:60):this.layWidth)/this.layOutData.lineSlideNum*this.ratio+"px",height:e.height*this.ratio+"px",backgroundColor:o,backgroundImage:s}}},slideLen:function(){return this.layOutData.list.length},centeredSlides:function(){return"mobile"==this.mode||"pc"==this.mode&&2==this.styleType}},methods:{calculateWidth:function(){var t=this;this.$nextTick(function(){if(2==t.layOutData.widthStyle.type)return void t.initSwiper();var e=t.layWidth;t.list.forEach(function(t,n){var i=t.componentList[0],r=0;if(i){var a=i.attributeJson;if(2==i.type){r=a.list.some(function(t){return 0!=t.picList.length})?a.baseStyle.w+a.baseStyle.l:e}else if(3==i.type){var o=0!=a.videoInfo.list.length;r=o?a.baseStyle.w+a.baseStyle.l:e}else r=a.baseStyle.w+a.baseStyle.l}else r=e;t.slideWidth=r}),t.initSwiper()})},initSwiper:function(){var t=this;this.$nextTick(function(){t.swiper&&(t.swiper.destroy(!0,!0),t.swiper=null,t.videoShow=!1);var e=t.layOutData,n=t.widthStyle,i=t.mode,a=t.ratio;t.options={effect:"slide",observer:!0,observeParents:!0,slidesPerView:"auto",slidesPerGroup:1,slidesPerGroupAuto:!0,centeredSlides:!0,loop:e.lineSlideNum<e.slideNum,spaceBetween:t.centeredSlides?"mobile"==i?20*a:40*a:0,autoplay:!!(e.autoPlay&&t.list.length>1)&&{delay:1e3*e.interval,disableOnInteraction:!0,stopOnLastSlide:!1}},1==n.type&&(t.options.loopedSlides=5);var o=t;t.options.on={slideChangeTransitionEnd:function(){o.slideIndex=this.activeIndex}},t.hasSwiperButton&&(t.options.navigation={nextEl:".swiper-button-next-"+t.recordId,prevEl:".swiper-button-prev-"+t.recordId}),t.swiper=new r.a(".swiper-container-"+t.recordId,t.options),t.videoShow=!0,console.log("[32m%s[0m","初始化轮播图",t.swiper)})}}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"entrance-con",style:{"--hoverColor":t.paginationStyle.hoverColor||t.paginationStyle.color,"--activeColor":t.paginationStyle.activeColor,"--color":t.paginationStyle.color}},[n("div",{key:t.indicatorType,class:["swiper-container swiper-container-"+t.recordId+" swiper-container-"+t.indicatorType],attrs:{id:"mySwiper-"+t.recordId}},[n("div",{staticClass:"swiper-wrapper"},t._l(t.list,function(e,i){return n("div",{key:e.sort,class:["swiper-slide",{"slide-auto":1==t.widthStyle.type||t.centeredSlides}]},[n("div",{staticClass:"slide-con",style:[t.backStyle(i),{width:1==t.widthStyle.type?e.slideWidth*t.ratio+"px":t.backStyle(i).width}]},[n("singleLayout",t._g(t._b({attrs:{layOutData:e,ratio:t.ratio,recordId:t.recordId,mode:t.mode,canAdjust:2==t.widthStyle.type}},"singleLayout",t.$attrs,!1),t.$listeners))],1)])}),0),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-prev","swiper-button-prev-"+t.recordId]},[t._t("swiper-button-prev",function(){return[n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-left",style:t.pageStyle})])]})],2):t._e(),t._v(" "),t.hasSwiperButton?n("div",{class:["swiper-button-next","swiper-button-next-"+t.recordId]},[t._t("swiper-button-next",function(){return[n("div",{staticClass:"arrow"},[n("span",{staticClass:"cms2iconfont iconarrow-right",style:t.pageStyle})])]})],2):t._e()])])},r=[],a={render:i,staticRenderFns:r};e.a=a},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{ref:"cms"},[n("div",{class:["lay-wrap",{mobile:"mobile"==t.mode}]},t._l(t.cmsList,function(e,i){return n("div",{key:e.sort,staticClass:"lay-item"},[n("div",{staticClass:"layout-set",style:{width:e.attributeJson.layoutStyle&&2===e.attributeJson.layoutStyle.widthStyle.type?e.attributeJson.layoutStyle.widthStyle.width+"%":"100%",height:e.attributeJson.layoutStyle?Math.round(e.attributeJson.layoutStyle.height*t.ratio)+"px":"auto"}},[1===e.layoutType?n("singleLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"singleLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),2===e.layoutType?n("multipleLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"multipleLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),3===e.layoutType?n("customLayout",t._g(t._b({attrs:{layOutData:e.attributeJson},scopedSlots:t._u([{key:"customComponent",fn:function(e){return[t._t("customComponent",null,{attributeJson:e.attributeJson})]}}],null,!0)},"customLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),4===e.layoutType?n("tabLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"tabLayout",t.$attrs,!1),t.$listeners)):t._e(),t._v(" "),5===e.layoutType?n("slideLayout",t._g(t._b({attrs:{layOutData:e.attributeJson,sort:e.attributeJson.sort,ratio:t.ratio,mode:t.mode,recordId:e.recordId}},"slideLayout",t.$attrs,!1),t.$listeners)):t._e()],1)])}),0)])},r=[],a={render:i,staticRenderFns:r};e.a=a}])});
|
|
32
32
|
//# sourceMappingURL=baiqiu-cms-decoration.min.js.map
|