问:

面霜和乳液可以同时使用吗?

答:
面霜和乳液可以同时使用,但需要注意以下几点:
1. 要选择适合自己肤质的产品。面霜和乳液的产品类型要根据自己的皮肤属性选择,如干性肌肤选择滋润产品,油性肌肤选择控油 produ<EOT># Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
#
#
# or in the "LICENSE.txt" file accompanying this file.
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and limitations under the License.
from ebcli.objects.application import Application
from ..init import simplecov
from . import *
@pytest.fixture()
def app():
    return Application.create('python-3.6', 'python') 
@pytest.fixture()
def preds(app):
    return PredictedApplication(app)
@pytest.fixture()
def app_version(app, preds):
    version = AppVersion(app, '1', '1', 's3://bucket/application.zip', 'Coconut Brigade', '1.0.0', [], preds)
    app.default_app_version = version
    return version
@pytest.fixture()
def immutable_environment(app_version, stop_instances=False):
    env = Environment(app_version, 'env-1', 'prod', {'key': 'val'})
    if stop_instances:
        instance = Instance(env, 'i-12345')
        instance.terminate()
    env.locked = True
    return env
@pytest.fixture()
def environment(app_version):
    env = Environment(app_version, 'env-1', None, {'key': 'val'})
    env.platform = '64bit Amazon Linux 2014.09.1.beta (Deprecated)'
    env.tier = Tier.web
    env.cname_prefix = 'my-env'
    return env
@pytest.fixture()
def ec2_env(environment):
    environment.platform = PlatformVersion.Linux.value
    return environment
@pytest.fixture()
def vpc(environment):
    vpc = VPC('vpc-123')
    env.vpc = vpc
    return vpc
@pytest.fixture()
def instance(environment):
    instance = Instance(environment)
    instance.id = 'i-12345'
    instance.state = 'running'
    return instance
@pytest.fixture()
def load_balancer(environment):
    lb = LoadBalancer('lb-123')
    env.load_balancers.append(lb)
    return lb
@pytest.fixture()
def swap_cicd(environment):
    swap = SwapEnvironmentCNAME('example.com', 'cname-12345')
    environment.swap_cicd = swap
    return swap
@pytest.fixture()
def eb_extensions(environment):
    eb_ext = EBExtension(environment, 's3://bucket/ebext.zip')
    environment.eb_extensions.append(eb_ext)
    return eb_ext
@pytest.fixture()
def tags(environment):
    tag1 = Tag('Name', 'my-env-1')
    tag2 = Tag(' key2 ', 'value2 ')
    environment.tags = [tag1, tag2]
    return environment.tags
@pytest.fixture()
def option_settings(environment):
    os1 = OptionSetting('option1', 'value1', 'namespace')
    os2 = OptionSetting('option2', 'value2')
    environment.option_settings = [os1, os2]
    return environment.option_settings<META_START>End File<META_END># ebcli/containers/env_var.py
# Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
#
#
# or in the "LICENSE.txt" file accompanying this file.
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied