|
@@ -76,11 +76,11 @@ const Page = () => {
|
|
|
name: (
|
|
|
<div className="flex items-center justify-center">
|
|
|
<img
|
|
|
- className="pic needsclick relative z-[-1] w-[46px]"
|
|
|
+ className="pic needsclick relative z-[-1] mr-[.04rem] h-[.4rem]"
|
|
|
src={curSource?.img}
|
|
|
alt=""
|
|
|
/>
|
|
|
- <div className="needsclick relative w-[80px] whitespace-normal break-all text-center text-[12px] font-black leading-[1]">
|
|
|
+ <div className="needsclick relative w-[.8rem] whitespace-normal break-all text-center text-[.12rem] font-black leading-[1.1]">
|
|
|
{curSource.text}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -101,9 +101,9 @@ const Page = () => {
|
|
|
name: (
|
|
|
<div className="flex flex-col items-center justify-center">
|
|
|
<div className="text-[14px] font-black leading-[1]">{curType.text}</div>
|
|
|
- <div className="flex flex-row items-center justify-center gap-[5px] text-[12px] text-[var(--primary-button)]">
|
|
|
+ <div className="flex flex-row items-center justify-center gap-[5px] text-[.12rem] text-[var(--primary-button)]">
|
|
|
<i className="iconfont icon-daojishi-hui !text-[13px]"></i>
|
|
|
- <div className="countdownTimer needsclick flex flex-row items-center justify-center gap-[1px]">
|
|
|
+ <div className="countdownTimer needsclick flex flex-row items-center justify-center">
|
|
|
<CutDown
|
|
|
endTime={(curData?.end_time * 1000 - Date.now()) / 1000}
|
|
|
itemStyle={{
|
|
@@ -245,7 +245,7 @@ const Page = () => {
|
|
|
<img
|
|
|
src="/rank/H7_jackpot_jiangbei_icon.webp"
|
|
|
alt=""
|
|
|
- className="w-[100px]"
|
|
|
+ className="w-[1rem]"
|
|
|
/>
|
|
|
<div className="flex flex-1 flex-col justify-between leading-[1]">
|
|
|
<div className="flex items-center">
|
|
@@ -296,7 +296,12 @@ const Page = () => {
|
|
|
</div>
|
|
|
<div>Apostas: 0</div>
|
|
|
</div>
|
|
|
- <CustomButton className="!px-[.1rem] !py-[.08rem]">
|
|
|
+ <CustomButton
|
|
|
+ className="!px-[.12rem] !py-[.06rem] !text-[.12rem] !font-normal"
|
|
|
+ onClick={() => {
|
|
|
+ router.replace("/");
|
|
|
+ }}
|
|
|
+ >
|
|
|
Aposte
|
|
|
</CustomButton>
|
|
|
</div>
|
|
@@ -335,7 +340,7 @@ const Page = () => {
|
|
|
className={styles.agentBtn}
|
|
|
onClick={() =>
|
|
|
router.push(
|
|
|
- `/rank/history?source=${currentSource.source}`
|
|
|
+ `/ranking/history?source=${currentSource.source}`
|
|
|
)
|
|
|
}
|
|
|
>
|
|
@@ -346,7 +351,7 @@ const Page = () => {
|
|
|
</CustomButton>
|
|
|
<CustomButton
|
|
|
className={styles.agentBtn}
|
|
|
- onClick={() => router.push("/rank/rules")}
|
|
|
+ onClick={() => router.push("/ranking/rules")}
|
|
|
>
|
|
|
<i className="iconfont icon-wenjian mr-[.1rem] scale-[1.4] transform text-[var(--primary-button)]"></i>
|
|
|
<span className="text-[var(--textColor1)]">Regras</span>
|