/*
Theme Name: 出海通
Author:Jack Dove 
Description: A Beautiful, Fast Loading and SEO Ready Website
Version: 1.0.0
*/
:root{
    --hover-color: #05208b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: white;
}
.content {
    max-width: 1220px;
    margin: 0 auto;
}
.clear {
    clear: both;
}
.flex {
    display: flex;
}
.h100 {
    height: 100%;
}
.flex1 {
    flex: 1;
}
.pt10 {
    padding-top: 10rem;
}
.pb10 {
    padding-bottom: 10rem;
}
.middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.center {
    text-align: center;
}
.pt6 {
    padding-top: 6rem;
}
.mt2 {
    margin-top: 1.5rem;
}
.mb3 {
    margin-bottom: 3rem;
}
.between {
    justify-content: space-between;
}
.flex.center{
    justify-content:center;
}
.flex.between {
    justify-content:space-between;
}
.flex.column{
    flex-direction:column;
}