@import url('./font.css?m=1');
@import url('../font/iconfont.css?m=2');
@import url('./font.css?m=1');
@import url('../font/iconfont.css?m=2');

* {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-weight: normal;
    font-family: 'UKIJ Tor';
    box-sizing: border-box;
    font-style: normal;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: #000000;
}

.mains {
    max-width: 520px;
    width: calc(100% - 20px);
    background: rgb(255 255 255 / 10%);
    border-radius: 6px;
    padding: 32px 16px 40px;
    transition: all 0.2s ease;
    margin: 10px auto;
}

/* 标题区域 */
.titles {
    text-align: center;
    color: #444;
    margin-bottom: 32px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}

.titles i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 50px;
    background: linear-gradient(100deg, #FFC107 0%, #FF9800 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.titles span {
    font-size: 20px;
    background: linear-gradient(205deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 表单布局 垂直列，移动端顺手 */
form {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

/* 输入框区域 — 大点击区域，圆润，高对比 */
#content {
    width: 100%;
    padding: 18px 20px;
    font-size: 12px;
    font-weight: 500;
    background: #f3f4f4;
    border-radius: 10px 0 0 10px;
    color: #fe9533;
    outline: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    text-align: center;
    caret-color: #f5b042;
    border: 1px solid #eee;
}

#content:focus {
    border-color: #f5b042;
}

#content::placeholder {
    color: #6c7080;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
}

/* 按钮样式 — 按压反馈，醒目的渐变 */
#searchBtn {
    background: linear-gradient(100deg, #FFC107 0%, #FF9800 100%);
    border: none;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchBtn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(245, 176, 66, 0.5);
}

/* 辅助说明文字 message */
.message {
    background: #000000;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1.45;
    color: #ffffff;
    margin-top: 15px;
    text-align: right;
    direction: rtl;
}
#history{
    margin-top: 20px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 10px;
}
#history div{
    padding: 5px 10px;
    background: #f0f8ff;
    border-radius: 6px;
    display: flex;
    gap: 10px;
}
.images{
    max-width: 520px;
    width: calc(100% - 20px);
    margin: 0 auto;
    border-radius: 6px;
    background: rgb(255 255 255 / 10%);
    padding: 10px;
}
.images img{
    width: 100%;
    border-radius: 6px;
}
.href{
    width: 100%;
    height: 40px;
    display: block;
    line-height: 40px;
    background: linear-gradient(100deg, #FFC107 0%, #FF9800 100%);
    text-align: center;
    color: #fff;
    border-radius: 6px;
}