forked from 77media/video-flow
修复问题
This commit is contained in:
parent
035806505b
commit
b4d17d237b
@ -177,7 +177,7 @@ function HomeModule5() {
|
||||
{pricingPlans.map((plan, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className=" w-[24rem] h-[38.125rem] bg-black rounded-lg p-[1.5rem] border border-white/20"
|
||||
className=" w-[24rem] h-[38.125rem] bg-black rounded-2xl p-[1.5rem] border border-white/20"
|
||||
>
|
||||
<h3 className="text-white text-2xl font-normal mb-[1rem]">
|
||||
{plan.title}
|
||||
@ -186,7 +186,7 @@ function HomeModule5() {
|
||||
<span className="text-white text-[3.375rem] font-bold">
|
||||
${plan.price}
|
||||
</span>
|
||||
<span className="text-white text-xs ml-[0.5rem]">//{billingType === "month" ? "mo" : "year"}</span>
|
||||
<span className="text-white text-xs ml-[0.5rem]">/ {billingType === "month" ? "mo" : "year"}</span>
|
||||
</div>
|
||||
<p className="text-white text-[0.875rem] mb-[1rem]">
|
||||
{plan.credits}
|
||||
|
||||
@ -301,7 +301,7 @@ function HomeModule2() {
|
||||
const videoElement = e.currentTarget;
|
||||
videoElement.play();
|
||||
}}
|
||||
className=" h-[20rem] object-cover border border-white/20 rounded-lg"
|
||||
className=" h-[20rem] object-cover border border-white/20 rounded-2xl"
|
||||
/>
|
||||
<h3 className="mt-[1rem] text-white text-[1.5rem] font-medium">
|
||||
{item.title}
|
||||
@ -329,7 +329,6 @@ function HomeModule3() {
|
||||
"https://cdn.qikongjian.com/1756474023663_yohi7a.mp4",
|
||||
"https://cdn.qikongjian.com/1756474023661_348dx3.mp4",
|
||||
"https://cdn.qikongjian.com/1756474023683_xlb34s.mp4",
|
||||
"https://cdn.qikongjian.com/1756474023683_xlb34s.mp4",
|
||||
"https://cdn.qikongjian.com/1756474230987_63ooji.mp4",
|
||||
],
|
||||
[
|
||||
@ -498,7 +497,7 @@ function HomeModule4() {
|
||||
<div
|
||||
key={index}
|
||||
onClick={() => handleTabClick(index)}
|
||||
className={`w-[31.75rem] h-[10.5rem] rounded-lg cursor-pointer transition-all duration-300 border ${
|
||||
className={`w-[31.75rem] h-[10.5rem] rounded-2xl cursor-pointer transition-all duration-300 border ${
|
||||
activeTab === index
|
||||
? "bg-[#262626] border-white/20 hover:border-white/40"
|
||||
: "bg-black border-white/10 hover:border-white/40"
|
||||
@ -526,7 +525,7 @@ function HomeModule4() {
|
||||
|
||||
{/* 右侧视频播放区域 */}
|
||||
<div className="flex-1 flex justify-center">
|
||||
<div className="w-[80rem] h-[45rem] bg-gray-800 rounded-lg overflow-hidden border border-white/20">
|
||||
<div className="w-[80rem] h-[45rem] bg-gray-800 rounded-2xl overflow-hidden border border-white/20">
|
||||
<video
|
||||
key={activeTab}
|
||||
src={processSteps[activeTab].video}
|
||||
@ -664,7 +663,7 @@ function HomeModule5() {
|
||||
{pricingPlans.map((plan, index) => (
|
||||
<div
|
||||
key={index}
|
||||
className=" w-[24rem] h-[38.125rem] bg-black rounded-lg p-[1.5rem] border border-white/20"
|
||||
className=" w-[24rem] h-[38.125rem] bg-black rounded-2xl p-[1.5rem] border border-white/20"
|
||||
>
|
||||
<h3 className="text-white text-2xl font-normal mb-[1rem]">
|
||||
{plan.title}
|
||||
@ -674,7 +673,7 @@ function HomeModule5() {
|
||||
${plan.price}
|
||||
</span>
|
||||
<span className="text-white text-xs ml-[0.5rem]">
|
||||
/{billingType === "month" ? "mo" : "year"}
|
||||
/ {billingType === "month" ? "mo" : "year"}
|
||||
</span>
|
||||
</div>
|
||||
<p className="text-white text-[0.875rem] mb-[1rem]">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user