@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*,
html,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans TC", SF Pro TC, SF Pro Text, SF Pro Icons, PingFang TC, Helvetica Neue, Helvetica, Arial, Microsoft JhengHei, wf_SegoeUI, Segoe UI, Segoe, Segoe WP, Tahoma, Verdana, Ubuntu, Bitstream Vera Sans, DejaVu Sans, 微軟正黑體, LiHei Pro, WenQuanYi Micro Hei, Droid Sans Fallback, AR PL UMing TW, Roboto, Hiragino Maru Gothic ProN, メイリオ, ヒラギノ丸ゴ ProN W4, Meiryo, Droid Sans, sans-serif;
  background-color: #D9D9D9;
}

input::-moz-placeholder {
  color: #0E0826;
}

input::placeholder {
  color: #0E0826;
}

#foot {
  justify-content: center;
  display: flex;
}

.logo {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 50px auto;
  color: #1F1254;
  white-space: nowrap;
}
.logo a {
  text-decoration: none;
  color: #1F1254;
}

.space {
  margin: 10px auto;
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
.wrap .space {
  padding: 10px auto;
}
.wrap .switchcontent {
  position: relative;
  width: 100%;
}
.wrap .switchcontent .switchpad {
  z-index: 0;
  position: absolute;
  top: -40px;
  left: 20%;
  margin: auto;
}
.wrap .switchcontent .switchpad .sbutton1 {
  height: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #24D6AC;
  color: #FFFFFF;
  border: 0px solid;
  border-radius: 10px;
  width: 150px;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .switchcontent .switchpad .sbutton2 {
  height: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #1DB894;
  color: #FFFFFF;
  border: 0px solid;
  border-radius: 10px;
  width: 150px;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .switchcontent .switchpad .sbutton3 {
  display: none;
  height: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #1DB894;
  color: #FFFFFF;
  border: 0px solid;
  border-radius: 10px;
  width: 150px;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .switchcontent .switchpad .sbutton1:hover {
  background-color: #20ac8c;
}
.wrap .switchcontent .switchpad .sbutton2:hover {
  background-color: #20ac8c;
}
.wrap .switchcontent .switchpad .sbutton3:hover {
  background-color: #20ac8c;
}
.wrap .switchcontent .tabcontent {
  display: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.wrap .switchcontent .tabcontent.active {
  opacity: 1;
  display: block;
}
.wrap .switchcontent .main {
  z-index: 1;
  position: relative;
  background-color: rgb(255, 255, 255);
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  width: 70%;
  max-width: 1440px;
  min-width: 320px;
  transition: 100ms ease-in-out;
}
.wrap .switchcontent .main .outline {
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}
.wrap .switchcontent .main .outline .title {
  display: none;
}
.wrap .switchcontent .main .outline .smalltext {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 5px;
  color: #1F1254;
}
.wrap .switchcontent .main .outline .filearea {
  background-color: #FFFFFF;
  margin: 0rem;
  padding: 0;
  position: relative;
  border-radius: 10px;
  border: 4.5px dashed #24D6AC;
  transition: 0.2s ease-in-out;
  overflow: hidden;
}
.wrap .switchcontent .main .outline .filearea .file-input {
  height: 225px;
  width: 100%;
  border-radius: 10px;
  opacity: 0;
}
.wrap .switchcontent .main .outline .filearea .icontextarea {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 50%;
  top: 50%;
  transition: 0.2s ease-in-out;
  transform-origin: center center;
  transform: translate(-50%, -50%);
}
.wrap .switchcontent .main .outline .filearea .icontextarea .uploadTitle {
  margin-top: 1rem;
  color: #24D6AC;
  white-space: nowrap;
  font-size: 2rem;
}
.wrap .switchcontent .main .outline .filearea .icontextarea .uploadText {
  margin-top: 1rem;
  color: #1F1254;
  white-space: nowrap;
  font-size: 1rem;
}
.wrap .switchcontent .main .outline .filearea .icontextarea .uploadicon {
  font-size: 2.8rem;
  color: #24D6AC;
  transition: 0.2s;
}
.wrap .switchcontent .main .outline .filearea:hover {
  background-color: #f1f1f1;
}
.wrap .switchcontent .main .outline .filearea:hover > .icontextarea {
  transform: translate(-50%, -50%) scale(1.1);
}
.wrap .switchcontent .main .outline .otherplace {
  display: flex;
  justify-content: space-between;
  margin: 6px 3px 0px 3px;
  flex-wrap: wrap;
}
.wrap .switchcontent .main .outline .otherplace .column {
  width: 100%;
  padding: 3px;
  flex: 1 1 150px;
}
.wrap .switchcontent .main .outline .otherplace .column .otherplaceicon {
  color: #1F1254;
  font-size: 1.5rem;
  padding-left: 3px;
}
.wrap .switchcontent .main .outline .otherplace .column .smalltext {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 5px;
  color: #1F1254;
}
.wrap .switchcontent .main .outline .otherplace .column .viewlimit {
  font-size: 1.3rem;
  margin-top: 5px;
  height: 2rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  display: flex;
  align-items: center;
  width: 100%;
  color: #1F1254;
}
.wrap .switchcontent .main .outline .otherplace .column .pwd {
  font-size: 1.3rem;
  margin-top: 5px;
  height: 2rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  display: flex;
  align-items: center;
  width: 100%;
  color: #1F1254;
}
.wrap .switchcontent .main .outline .otherplace .column .expiryDay {
  font-size: 1.3rem;
  margin-top: 5px;
  height: 2rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  display: flex;
  align-items: center;
  width: 100%;
  color: #1F1254;
}
.wrap .switchcontent .main .outline .otherplace .column .remark {
  font-size: 1.3rem;
  display: inline-block;
  height: 5rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  width: 100%;
}
.wrap .switchcontent .main .outline .progressplace {
  display: none;
  height: 25px;
  width: 100%;
  margin: 10px auto;
}
@property --progress {
  .wrap .switchcontent .main .outline .progressplace {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
  }
}
.wrap .switchcontent .main .outline .progressplace .p-progress {
  display: block;
  margin: auto;
  height: 25px;
  border-radius: 25px;
  background: linear-gradient(90deg, #0f0, #0ff var(--progress), transparent 0);
  border: 1px solid #eee;
  transition: 0.3s --progress;
}
.wrap .switchcontent .main .outline .uploadbutton {
  height: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #24D6AC;
  color: #FFFFFF;
  border: 0px solid;
  margin: auto;
  border-radius: 5px;
  width: 100%;
  display: block;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .switchcontent .main .outline .uploadbutton:hover {
  background-color: #20ac8c;
}
.wrap .switchcontent .main:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.wrap .switchcontent .second {
  z-index: 1;
  position: relative;
  background-color: rgb(255, 255, 255);
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  width: 70%;
  max-width: 1440px;
  min-width: 320px;
  transition: 100ms ease-in-out;
}
.wrap .switchcontent .second .outline {
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}
.wrap .switchcontent .second .outline .subtitle {
  text-align: center;
  font-size: 2rem;
  margin: 10px;
}
.wrap .switchcontent .second .outline .smalltext {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 5px;
  color: #1F1254;
}
.wrap .switchcontent .second .outline .inputOriginUrl {
  font-size: 1.3rem;
  margin-top: 5px;
  height: 2rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  display: flex;
  align-items: center;
  width: 100%;
  color: #1F1254;
}
.wrap .switchcontent .second .outline .customTitle {
  font-size: 1.3rem;
  margin-top: 5px;
  height: 2rem;
  border-radius: 5px;
  border: 3px solid #1F1254;
  display: flex;
  align-items: center;
  width: 100%;
  color: #1F1254;
}
.wrap .switchcontent .second .outline .otherplace {
  display: flex;
  justify-content: space-between;
  margin: 6px 3px 0px 3px;
}
.wrap .switchcontent .second .outline .otherplace .transbutton {
  height: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #24D6AC;
  color: #FFFFFF;
  border: 0px solid;
  margin: auto;
  border-radius: 5px;
  width: 100%;
  display: block;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .switchcontent .second .outline .transbutton:hover {
  background-color: #20ac8c;
}
.wrap .switchcontent .second:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.wrap .resultpanel {
  display: none;
  background-color: rgb(255, 255, 255);
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  width: 70%;
  max-width: 1440px;
  min-width: 320px;
  transition: 100ms ease-in-out;
}
.wrap .resultpanel .outline {
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.wrap .resultpanel .outline .textplace {
  display: flex;
  text-align: center;
  margin: 6px auto 0px auto;
  padding-bottom: 3px;
  flex-wrap: wrap;
}
.wrap .resultpanel .outline .textplace .shortUrl {
  font-size: 1.5rem;
}
.wrap .resultpanel .outline .textplace p {
  padding-bottom: 3px;
}
.wrap .resultpanel .outline .iconplace {
  font-size: 2rem;
  display: flex;
  text-align: center;
  margin: 6px auto 0px auto;
  padding-bottom: 3px;
  flex-wrap: wrap;
}
.wrap .resultpanel .outline .otherplace {
  display: flex;
  justify-content: space-between;
  margin: 6px 3px 0px 3px;
  flex-wrap: wrap;
}
.wrap .resultpanel .outline .otherplace .onekeycopy {
  height: 40px;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #24D6AC;
  color: #FFFFFF;
  border: 0px solid;
  margin: auto;
  border-radius: 5px;
  width: 100%;
  display: block;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
.wrap .resultpanel .outline .otherplace .onekeycopy:hover {
  background-color: #20ac8c;
}
.wrap .adcontent {
  margin-top: 10px;
  width: 60%;
  position: relative;
  background-color: rgb(255, 255, 255);
  margin: auto;
  padding: 10px;
  border-radius: 30px;
  width: 70%;
  max-width: 740px;
  min-width: 320px;
  transition: 100ms ease-in-out;
}
.wrap .adcontent a {
  width: 100%;
}
.wrap .adcontent a img {
  margin: auto;
  display: block;
  padding: 10px;
  border-radius: 30px;
}

.footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
  flex: auto;
}
.footer .item {
  margin: 0px 3px 0px 3px;
  color: #1F1254;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 520px) {
  .logo {
    font-size: 2.5rem;
  }
  .wrap .switchcontent .switchpad {
    top: -30px;
    left: 70px;
  }
  .wrap .switchcontent .switchpad .sbutton1 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton2 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton3 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton1:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .switchpad .sbutton2:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .switchpad .sbutton3:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .main {
    width: 80%;
  }
  .wrap .switchcontent .main .outline .filearea .icontextarea .uploadTitle {
    font-size: 1.5rem;
  }
  .wrap .switchcontent .main .outline .filearea .icontextarea .uploadText {
    font-size: 0.6rem;
  }
  .wrap .switchcontent .main .outline .otherplace .column .smalltext {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 5px;
    color: #1F1254;
  }
  .wrap .adcontent {
    width: 80%;
  }
}
@media screen and (max-width: 425px) {
  .logo {
    font-size: 2.3rem;
  }
  .wrap .switchcontent .switchpad {
    top: -30px;
    left: 70px;
  }
  .wrap .switchcontent .switchpad .sbutton1 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton2 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton3 {
    height: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #24D6AC;
    color: #FFFFFF;
    border: 0px solid;
    border-radius: 10px;
    width: 130px;
    opacity: 1;
    transition: 0.1s ease-in-out;
  }
  .wrap .switchcontent .switchpad .sbutton1:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .switchpad .sbutton2:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .switchpad .sbutton3:hover {
    background-color: #20ac8c;
  }
  .wrap .switchcontent .main {
    width: 100%;
  }
  .wrap .switchcontent .main .outline .filearea .icontextarea {
    width: 100%;
  }
  .wrap .switchcontent .main .outline .filearea .icontextarea .uploadTitle {
    font-size: 1.5rem;
  }
  .wrap .switchcontent .main .outline .filearea .icontextarea .uploadText {
    white-space: wrap;
    font-size: 0.6rem;
  }
  .wrap .switchcontent .main .outline .otherplace .column .viewlimit {
    font-size: 0.8rem;
  }
  .wrap .switchcontent .main .outline .otherplace .column .smalltext {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 5px;
    color: #1F1254;
  }
  .wrap .resultpanel .outline .textplace #originUrl {
    font-size: 1.8rem;
  }
  .wrap .resultpanel .outline .textplace #title {
    border-radius: 20%;
    text-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .wrap .adcontent {
    width: 100%;
  }
}/*# sourceMappingURL=indexv2.css.map */